JavaScript发送电子邮件
JavaScript发送电子邮件
const nodemailer = require("nodemailer");
const transporter = nodemailer.createTransport({
host: "smtp.qq.com",// SMTP 服务器地址
port: 465,// SMTP 端口,对于 SSL 使用 465
secure: true, // 对端口465使用“true”,对所有其他端口使用“false”
auth: {
user: "更改成自己的邮箱",// 发件人邮箱
pass: "自己的SMTP授权码",// SMTP 授权码
},
});
// 异步。全局作用域中不允许使用wait,必须使用包装器
async function main() {
// 使用定义的传输对象发送邮件
const info = await transporter.sendMail({
from: '"发件人名称 👻" <发件人邮箱地址>', // 发件人地址
to: "接收者的邮箱地址", // 接收者列表,用逗号隔开
subject: "主题行 测试 ✔", // 主题行
text: "纯文本正文", // 纯文本正文
html: "<b>html正文</b>", // html正文
});
console.log("已发送消息: %s", info.messageId);
// 已发送消息: <7100cc5a-51c8-60aa-dfb8-531bd086d5b1@qq.com>
}
main().catch(console.error);