Skip to content

Instantly share code, notes, and snippets.

@marcustw
Last active October 18, 2021 14:39
Show Gist options
  • Save marcustw/7bce1deeadefa3649bb87311337d3c2d to your computer and use it in GitHub Desktop.
Save marcustw/7bce1deeadefa3649bb87311337d3c2d to your computer and use it in GitHub Desktop.
transport-service
const noreplyEmail = "Insert_Your_FROM_Email@gmail.com";
const noreplyPassword =
"Insert_Your_FROM_Email_Password";
const domain = "gmail";
const transporter = nodemailer.createTransport({
service: domain,
auth: {
user: noreplyEmail,
pass: noreplyPassword,
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment