Tag: hotmail

Hotmail阻止来自nodemailer的电子邮件

即时通讯使用Nodemailer模块从我的Hotmail / Outlook帐户发送smtp电子邮件。 我在亚马逊ec2上托pipe了我的应用程序。 我的代码发送电子邮件: var smtpTransport = nodemailer.createTransport("SMTP",{ service: 'Hotmail', auth: { user: 'xxxxxx@outlook.com', pass: 'xxxxxx?' } }); 当我尝试发送一封电子邮件时,服务器响应错误名称为“错误”,消息“连接意外closures”,堆栈“错误:连接在SMTPClient._onClose意外closures(C:\ Apps \ myapp \ node_modules \ nodemailer \ node_m在TCP.close(net.js:465:12)处的Socket.EventEmitter.emit(events.js:117:20)处enter code here {[DeliveryError:Message交付失败:550 5.3.4未采取所请求的操作;我们注意到您的Hotmail帐户中有一些不寻常的活动,为了保护您,我们暂时封锁了您的帐户。 有人知道如何解决这个问题? 谢谢!