nodejs的发邮件模块nodemailer报错

搜索引擎上搜到的相似案例:

1、https://cnodejs.org/topic/543c756f91eadb0f73aa33f4#556294908f294e213d10b8d1

2、http://support.qualityunit.com/156325-Email-is-not-sent-because-of-failed-authentication(这个有解决方案,但是国外的,你们懂,和国内的不一样)

----------正文----------

错误:

//第一种
{ [Error: Invalid login]
  code: 'EAUTH',
  response: '535 Error: authentication failed',
  responseCode: 535 }
//第二种
 { [Error: Invalid login]
  code: 'EAUTH',
  response: '550 User is locked',
  responseCode: 550 }
//第三种
{ [Error: Mail command failed]
  code: 'EENVELOPE',
  response: '553 Mail from must equal authorized user',
  responseCode: 553 }

错误分析:只要是5开头的错误,大概都是验证出错,连接不上smtp等意思。

错误原因:网易邮箱帮助可以查到smtp服务器和端口,但是没有说明需要用授权码作为密码(以前是用真实密码的,但是不知道什么时候改了,wiki却不改,坑)。

so,解决方案是:其他的按nodemailer的github上的例子写,密码那里写授权码即可。

ps:授权码可以登录网易邮箱,绑定手机后获取。

亲测成功代码:

nodejs的发邮件模块nodemailer报错



你可能感兴趣的:(nodejs的发邮件模块nodemailer报错)