我正在尝试从 strongloop 发送电子邮件。我在云九平台在线工作。
我尝试使用简单的代码发送邮件。但没有任何工作。
我正在尝试从 strongloop 发送电子邮件。我在云九平台在线工作。
我尝试使用简单的代码发送邮件。但没有任何工作。
请注意,在 cloud9 (c9.io) 上禁用传出 smtp 以供一般使用。您可以发送到 gmail 地址进行测试或使用 google、amazon、sendgrid 等邮件 API。
这是来自博客的示例 - http://strongloop.com/strongblog/robust-node-applications-error-handling/
Here is sample email alert template using nodemailer:
var nodemailer = require('nodemailer')
var transport = nodemailer.createTransport('SMTP', { // [1]
service: "Gmail",
auth: {
user: "gmail.user@gmail.com",
pass: "userpass"
}
})
if (process.env.NODE_ENV === 'production') { // [2]
process.on('uncaughtException', function (er) {
console.error(er.stack) // [3]
transport.sendMail({
from: 'alerts@mycompany.com',
to: 'alert@mycompany.com',
subject: er.message,
text: er.stack // [4]
}, function (er) {
if (er) console.error(er)
process.exit(1) // [5]
})
})
}
另外,您使用的是哪个版本的 LoopBack,请参阅此处的 2.0 发行说明 - http://docs.strongloop.com/display/public/LB/LoopBack+2.0+release+notes
hth