Created
July 11, 2014 01:38
-
-
Save maxclaus/f3d111ce05274cae7e43 to your computer and use it in GitHub Desktop.
Script to send email by gmail using current user account
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
var nodemailer = require('nodemailer'), | |
env = require('../env'); | |
var Service = module.exports = function () {}; | |
Service.prototype.sendByCurrentUserEmailAccount = function(opt, user) { | |
var smtpTransport = nodemailer.createTransport('SMTP', { | |
service: 'Gmail', | |
auth: { | |
XOAuth2: { | |
user: user.email, | |
clientId: env.config.google.clientID, | |
clientSecret: env.config.google.clientSecret, | |
refreshToken: user.googleRefreshToken | |
} | |
} | |
}); | |
if (!Array.isArray(opt.to)) opt.to = [opt.to]; | |
var mailOptions = { | |
from: opt.from, | |
to: opt.to, | |
subject: opt.subject, | |
generateTextFromHTML: true, | |
html: opt.html | |
}; | |
smtpTransport.sendMail(mailOptions, function(err) { | |
if (err) console.log(err); | |
smtpTransport.close(); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment