Created
May 22, 2020 04:42
-
-
Save leoaiassistant/7de6c7f702c58fb12feb6a643749fb46 to your computer and use it in GitHub Desktop.
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 transporter = nodemailer.createTransport({ | |
host: 'smtp.gmail.com ', | |
port: 465, | |
service: 'gmail', | |
auth: { | |
user: '[email protected]', | |
pass: 'YourSecurePasswordHere' | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment