我的用例是这样的,我需要发送一封包含多个BCC收件人的电子邮件,每个收件人都有自己的替换。
我试图将SendGrid's Node Library "Kitchen Sink" example与一些静态测试数据一起使用。我能够使用BCC收件人创建邮件,但是,每个收件人都在接收最后一组替换值。
以下是我的代码的相关部分:
SELECT
Value, SortColumn
FROM yourTable
ORDER BY
CASE WHEN SortColumn = 3 THEN 0 ELSE 1 END,
SortColumn DESC
结果是每个密件抄送收件人将收到最后一个替换值:
const mail = new helper.Mail();
const personalization = new helper.Personalization();
const testData = [
{
email: 'recipient1@gmail.com',
name: 'Bob Smith',
dollars: '100',
points_for_play: '2500',
},
{
email: 'recipient2@gmail.com',
name: 'Mary Smith',
dollars: '50',
points_for_play: '1000',
},
];
testData.forEach(function(recipientData) {
var substitutionValues = _.omit(recipientData, ['email', 'name']);
var bccRecipient = new helper.Email(recipientData.email, recipientData.name);
personalization.addBcc(bccRecipient);
_.forOwn(substitutionValues, function(value, key) {
var substitution = new helper.Substitution('%' + key + '%', value);
personalization.addSubstitution(substitution);
});
});
mail.addPersonalization(personalization);
我还尝试为每个BCC收件人创建一个新的Personalization,但这会导致错误,说明个性化实例需要" to"数组,这看起来不正确......我哪里错了?
答案 0 :(得分:0)
自2017年7月起,v3 API尚未支持BCC替换,但根据SendGrid支持,它们位于SMTP API中。