Last active
October 18, 2021 14:39
-
-
Save marcustw/7bce1deeadefa3649bb87311337d3c2d to your computer and use it in GitHub Desktop.
transport-service
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const noreplyEmail = "[email protected]"; | |
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