我想使用node.js模块发送没有密码验证的邮件。
我用过" sendmail"发送邮件。它工作正常,但无法向Gmail帐户发送邮件。
sendmail({
from: 'abc@gmail.com',
to: 'xyz@gmail.com',
subject: 'test sendmail',
html: 'Mail of test sendmail'
}, function (err, reply) {
console.log(err && err.stack);
console.dir("reply",reply);
});

我该如何解决?
感谢您的宝贵答案。