gpt4 book ai didi

Node.Js:在发送批量电子邮件时尝试使用密件抄送而不是“收件人”

转载 作者:太空宇宙 更新时间:2023-11-04 02:23:38 26 4
gpt4 key购买 nike

我希望以收件人无法看到彼此电子邮件 ID 的方式发送电子邮件。我正在使用 mailgun-api。这是我的函数调用当前的样子:

mg.sendText(from, [to],
subject,
message,
'yourfriends@abc.com', {},
function(err) {
if (err) {
console.log('Email not sent to: ' + to + ', Error:' + err);
}
else {
console.log('Email Sent To' + to);
}
});

最佳答案

您需要做的是在帖子中发送recipient-variables字段。如果您不需要为每个用户自定义电子邮件正文,它应该类似于:

// map list of recipients to {recipient: {}, ...}
var recipientVariables = to.reduce(
function(obj, address) { obj[address] = {}; return obj },
{}
);

参见the docs on batch sending了解更多详情。

但是,node-mailgun library似乎不支持设置recipient-variables,或者有一个明显的解决方法可以将其塞在那里。你需要将它插入他们正在构建的 body 中 here 。据我所知,sendRaw 方法也不会让您这样做。

关于Node.Js:在发送批量电子邮件时尝试使用密件抄送而不是“收件人”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31680477/

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