node发送邮件异常简朴,这里只做qq的演示,你能够闻一知十.
运用nodemailer包
let transporter = nodemailer.createTransport({
// 运用qq发送邮件
// 更多请检察支撑列表:https://nodemailer.com/smtp/well-known/
service: 'qq',
port: 465, // SMTP 端口
secureConnection: true, // 运用了 SSL
auth: {
user: '751734566@qq.com',
// 这里暗码不是qq暗码,是你设置的smtp受权码
// 猎取qq受权码请看:https://jingyan.baidu.com/article/6079ad0eb14aaa28fe86db5a.html
pass: 'xxxxxxxx',
}
});
接下来我们设置我们到发送内容
let mailOpt= {
from: '"test" <xxxxxx@qq.com>', // 你到qq邮箱地址
to: 'xxxx@qq.com', // 接受人,能够群发填写多个逗号分开
subject: 'Hello', // 主落款(邮件名)
// 能够发送text或许html花样,2选1
// text: 'Hello world?', // 纯文本
html: '<b>Hello world?</b>' // html
};
假如我们想发一个轻微漂亮到邮件怎么办?
我们能够运用html模板来完成
const template = require('art-template');
let html = template(__dirname + '/mail_temp.html', obj) // mail_temp.html为你想运用到页面模板,obj为你的参数
// 比方
obj = {
name : 'test',
phone : '183xxxxxxxx',
time : new Date()
}
<section>
新用户:{{name}}({{phone}})于{{time}}进行了注册.
</section>
一切预备完成,让我们发送邮件吧!
// 实行发送
transporter.sendMail(mailOptions, (error, info) => {
if (error) {
return console.log(error);
}
console.log('邮件已发送胜利,邮件id: %s', info.messageId);
});
文档参考
nodemailer : https://www.npmjs.com/package…
art-template : https://aui.github.io/art-tem…