Last active
January 16, 2019 22:39
-
-
Save luetkemj/bda705a62b0534d9a10b2eba4efa01c3 to your computer and use it in GitHub Desktop.
Nodemailer quick setup for gmail
This file contains 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 nodemailer = require('nodemailer'); | |
const transporter = nodemailer.createTransport({ | |
service: 'gmail', | |
auth: { | |
type: 'OAuth2', | |
user: '[email protected]', | |
clientId: 'XXX', | |
clientSecret: 'XXX', | |
refreshToken: 'XXX' | |
}, | |
}); | |
const mailOptions = { | |
from: 'My Name <[email protected]>', | |
to: '[email protected]', | |
subject: 'Hello!', | |
text: 'Hello World!!' | |
} | |
transporter.sendMail(mailOptions, function (err, res) { | |
if(err){ | |
console.log('Error'); | |
} else { | |
console.log('Email Sent'); | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment