TypeError:无法创建属性'邮件程序'在字符串' SMTP'

时间:2017-12-25 02:34:41

标签: node.js express

enter image description here

我想使用nodemailer发送电子邮件,但是它引发了这个错误,我从一本书 WEB DEVELOPMENT WITH NODE AND EXPRESS

中引用它

1 个答案:

答案 0 :(得分:0)

尝试使用此结构,因为原始结构(mailTransport =)已更改: -

smtpTransport = nodemailer.createTransport({
service: 'Gmail', 
auth: {
xoauth2: xoauth2.createXOAuth2Generator({
user: 'youremail@gmail.com',
//and other stuff here
 });
 }
});

希望这会有所帮助:)