gpt4 book ai didi

node.js - 使用nodemailer向多个收件人发送邮件

转载 作者:太空宇宙 更新时间:2023-11-04 00:28:09 25 4
gpt4 key购买 nike

如何使用nodemailer将邮件发送给存储在数据库(mongodb)中的多个收件人?目前我正在发送给单个收件人。但我不知道如何向多个邮件 ID 存储在 mongodb 中的人发送邮件。

如果有人知道答案,请回复。预先感谢您:)

最佳答案

使用 mongodb unique 获取要发送电子邮件的所有 email_address 的数组,并将该数组传递给 Nodemailer。

const nodemailer = require('nodemailer');

// create reusable transporter object using the default SMTP transport
let transporter = nodemailer.createTransport({
service: 'gmail',
auth: {
user: 'gmail.user@gmail.com',
pass: 'yourpass'
}
});

let email_arr = db.users.distinct( "email", { /* Any condition you want to put*/ } )

let mailOptions = {
from: "test@example.com", // sender address
subject: "Hello ✔", // Subject line
text: "Hello This is an auto generated Email for testing from node please ignore it", // plaintext body
to: email_arr
}


// send mail with defined transport object
transporter.sendMail(mailOptions, (error, info) {
if (error) {
return console.log(error);
}
console.log('Message %s sent: %s', info.messageId, info.response);
});

关于node.js - 使用nodemailer向多个收件人发送邮件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41976162/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com