" sendmail" nodemodule无法向gmail帐户发送邮件

时间:2017-08-23 05:06:04

标签: node.js

我想使用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);
});




我该如何解决?

感谢您的宝贵答案。

0 个答案:

没有答案