我想知道为什么nodemailer没有发送电子邮件,但它没有返回任何错误,所以我不知道该怎么做。这是我的代码(几乎从nodemailer文档中复制):
var cors = require('cors');
var corsOptions = {
origin: 'http://davidmichael.me',
allowedHeaders: 'accept, content-type',
methods: 'GET, POST'
};
var nodemailer = require('nodemailer');
module.exports = function(app){
app.options('/email', cors(corsOptions));
app.post('/email', cors(corsOptions), function(req, res){
var transporter = nodemailer.createTransport({
service: 'Gmail',
auth: {
user: 'my-email',
pass: 'my-password'
}
});
var mailOptions = {
from: 'David Michael <my-email>',
to: 'recipient-email',
subject: 'Just verifying your email address ✔',
text: 'Hello to myself!',
html: '<p><b>Hello</b> to myself</p>'
};
var emailMessage = "";
transporter.sendMail(mailOptions, function(error, info){
if(error){
emailMessage = "there was an error :-(, and it was this: " + error.message;
}else{
emailMessage = "Message sent: " + info.response;
}
});
//transporter.close();
return res.json({
message: "success",
email: emailMessage
});
});
};
每次尝试时,它都会在最后成功返回JSON对象,如下所示:
{"message":"success","email":""}
也许我应该注意到我使用的是CORS,因为我想要获取用户的电子邮件地址。我的客户端应用程序使用包含其电子邮件地址的JSON对象发送HTTP POST请求 - 但是,当前代码尚未执行任何操作。我希望首先使用基本机制。
我正在使用Openshift。这会有所作为吗?
此外,我尝试过使用非Gmail电子邮件地址,同样的事情发生了。
关于我哪里出错的任何想法?
答案 0 :(得分:1)
看起来你在异步方法返回之前返回了JSON响应。尝试将响应放在回调中:
transporter.sendMail(mailOptions, function(error, info){
if(error){
emailMessage = "there was an error :-(, and it was this: " + error.message;
}else{
emailMessage = "Message sent: " + info.response;
}
return res.json({
message: "success",
email: emailMessage
});
});
//transporter.close();
你可能不想在实践中使用它。等待发送电子邮件可能非常耗时,我怀疑你会看到很多超时。这应该会让你朝着正确的方向前进!
这也假定您的电子邮件地址已全部设置,并且您也输入了真正的收件人。我知道我遇到了Gmail的问题,因为他们非常擅长检测僵尸程序:)