标签: node.js express
我想使用nodemailer发送电子邮件,但是它引发了这个错误,我从一本书 WEB DEVELOPMENT WITH NODE AND EXPRESS
答案 0 :(得分:0)
尝试使用此结构,因为原始结构(mailTransport =)已更改: -
smtpTransport = nodemailer.createTransport({ service: 'Gmail', auth: { xoauth2: xoauth2.createXOAuth2Generator({ user: 'youremail@gmail.com', //and other stuff here }); } });
希望这会有所帮助:)