gpt4 book ai didi

javascript - Sendgrid SMTP API 在发送邮件时不替换替换标签

转载 作者:行者123 更新时间:2023-11-30 00:17:59 24 4
gpt4 key购买 nike

我正在开发一个 Node.js 应用程序,它包含用于用户邀请等内容的 Sendgrid 交易电子邮件模板。具体来说,我在带有官方 sendgrid v2 npm 的 Ubuntu 上使用 nodejs v0.10.25。我实际发送消息的函数如下:

function sendEmail(payload, options, cb){
//for debugging purposes
console.log(options);

var email = new sendgrid.Email({
subject: payload.subject,
html: payload.html,
from: global.config.sendgrid.mailFrom,
fromname: global.config.sendgrid.mailName,
replyto: options.replyto ? options.replyto : 'no-reply@' + global.config.sendgrid.mailhost
});

email.setSmtpapiTos(options.addressees);

if(options.filters)
email.setFilters(options.filters);

if(options.subs)
email.setSubstitutions(options.subs);

if(options.category)
email.setCategories(options.category);

if(options.unique_args)
email.setUniqueArgs(options.unique_args);

sendgrid.send(email, function(err, json){
return cb(err, json);
});
}

包含替换的选项对象如下所示:

{ category: 'Support Invite',
addressees: [ %EMAIL1%, %EMAIL2% ],
sub:
{ '-name-': [ 'Shawn 1', 'Shawn 2' ],
'-id-': [ 1, 2 ],
'-pic-':
[ '<img height="100" src="%PICTURE URL%?sz=50" style="width: 100px; height: 100px;" width="100" />',
'<img height="100" src="%PICTURE URL%?sz=50" style="width: 100px; height: 100px;" width="100" />' ] },
filters:
{
templates:
{
settings:
{ 'enable': 1,
'template_id': global.config.sendgrid.transactions.supportInvite} } },
unique_args:
{
sender: '104294048950213400380' } }

最后,这是来自该测试的模板的 HTML:

<html>
<head>
<title></title>
</head>
<body>
<div style="text-align: center;"><span>-pic-</span></div>

<div><span style="font-family:tahoma,geneva,sans-serif;">Hello -name-,</span></div>

<div>&nbsp;</div>

<div><span style="font-family:tahoma,geneva,sans-serif;">&lt;%body%&gt;</span></div>

<div>&nbsp;</div>

<div>&nbsp;</div>

<div>&nbsp;</div>

<div><span style="font-family:tahoma,geneva,sans-serif;"><span style="font-size:9px;">Invitation ID:</span>&nbsp;-id-</span></div>
</body>
</html>

邮件会以正确的模板、主题和发件人信息发送给适当的收件人。我还可以从我的 SendGrid 统计信息中验证它们是否标记有适当的类别和 SMTP 参数(“发件人”)。 但替换没有完成。例如,-name- 标签仍然存在于我的测试邮箱中的结果电子邮件中。

我已经尝试在 SendGrid 上查阅文档,包括他们的 SMTP API,并查询他们的支持数据库。我还搜索了 StackExchange,但最相关的问题( thisthisthis )并没有提供答案。特别有趣的是,每个人都使用不同的字符作为替换标记。不知道那是纯粹的选择还是语言依赖。我尝试了不同的字符(-、: 和 %),但结果相同。

最佳答案

我看到您的选项对象有一个属性 sub,而不是 subs。 option.subs 将始终未定义,因此在

中为 false

如果(选项.subs)

要么尝试将其更改为

如果(选项.sub)

或者将选项中的属性从 sub 重命名为 subs。

关于javascript - Sendgrid SMTP API 在发送邮件时不替换替换标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34133056/

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