小编Har*_*nde的帖子

在 NodeJS 中使用 Microsoft 365 电子邮件服务器发送电子邮件

let transporter = nodemailer.createTransport({
    service: "Outlook365",
    host: 'smtp.office365.com',
    port: 587,
    tls: {
        ciphers:'SSLv3'
    },
    auth: {
        user: 'username',
        pass: 'password'
    }
});
Run Code Online (Sandbox Code Playgroud)

我在发送电子邮件时遇到 EAUTH 错误,请检查图像是否有错误。[1]: https: //i.stack.imgur.com/snt3T.jpg

node.js nodemailer

6
推荐指数
1
解决办法
9428
查看次数

标签 统计

node.js ×1

nodemailer ×1