Skip to content

Instantly share code, notes, and snippets.

@leoaiassistant
Created May 22, 2020 04:42
Show Gist options
  • Save leoaiassistant/7de6c7f702c58fb12feb6a643749fb46 to your computer and use it in GitHub Desktop.
Save leoaiassistant/7de6c7f702c58fb12feb6a643749fb46 to your computer and use it in GitHub Desktop.
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