用nodejs做一下发送邮件例子

Posted 一起来学python

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用nodejs做一下发送邮件例子相关的知识,希望对你有一定的参考价值。

var nodemailer = require("nodemailer");
 
var transport = nodemailer.createTransport("SMTP", {
    host: "smtp.qq.com",
    secureConnection: true, // use SSL
    port: 465, // port for secure SMTP
    auth: {
        user: "[email protected]",
        pass: "xxxxxxx"
    }
});
 
transport.sendMail({
    from : "[email protected]",
    to : "[email protected]",
    subject: "邮件主题",
    generateTextFromhtml : true,
    html : "<p>这是封测试邮件</p>"
}, function(error, response){
    if(error){
        console.log(error);
    }else{
        console.log("Message sent: " + response.message);
    }
    transport.close();
});



转自:https://blog.gaoqixhb.com/p/53fc1e3991d7c21b313ff981

以上是关于用nodejs做一下发送邮件例子的主要内容,如果未能解决你的问题,请参考以下文章

Nodejs+定时截图+发送邮件

lambda函数电子邮件不通过nodeJS发送

如何通过使用 NodeJS 发送验证码来验证用户电子邮件?

node.js使用Nodemailer发送邮件

NodeJs的一次实用(定时抓取数据)

我应该如何使用 Outlook 发送代码片段?