我正在尝试使用来自 Microsoft azure 上 express js 服务器的 nodemailer 的邮件 api 发送邮件。它在本地机器上取得了成功,但在天蓝色服务器(远程)上却没有。任何想法?
var mail = require("nodemailer").mail;
mail({from: "from@gmail.com", // sender address
to: "to@gmail.com", // list of receivers
subject: "subject", // Subject line
text: "text", // plaintext body
html: "<b>helloworld</b>" // html body
});
谢谢,av