gpt4 book ai didi

amazon-web-services - 电子邮件模板中的 For 循环

转载 作者:行者123 更新时间:2023-12-01 05:59:51 25 4
gpt4 key购买 nike

我们可以为 SES 模板创建一个 for 循环吗?

查看此处的代码( https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-api.html ),我看到的唯一示例是键值对。

语法看起来就像我以前在 handlebar.js 中使用的一样.

像这样的东西:

{
"Template": {
"TemplateName": "MyTemplate",
"SubjectPart": "Greetings, {{name}}!",
"HtmlPart": "<h1>Hello {{name}},</h1><p>Your favorite animals are {{#each animals}}<h1>{{favoriteanimal}}</h1>{{/each}}.</p>",
}
}

最佳答案

是的!

示例模板数据:

{
"meta":{
"userId":"51806220607"
},
"contact":{
"firstName":"Anaya",
"lastName":"Iyengar",
"city":"Bengaluru",
"country":"India",
"postalCode":"560052"
},
"subscription":[
{
"interest":"Sports"
},
{
"interest":"Travel"
},
{
"interest":"Cooking"
}
]
}

示例模板:
{
"Template": {
"TemplateName": "Preferences",
"SubjectPart": "Subscription Preferences for {{contact.firstName}} {{contact.lastName}}",
"HtmlPart": "<h1>Your Preferences</h1>
<p>You have indicated that you are interested in receiving
information about the following subjects:</p>
<ul>
{{#each subscription}}
<li>{{interest}}</li>
{{/each}}
</ul>
<p>You can change these settings at any time by visiting
the <a href=https://www.example.com/prefererences/i.aspx?id={{meta.userId}}>
Preference Center</a>.</p>",
"TextPart": "Your Preferences\n\nYou have indicated that you are interested in
receiving information about the following subjects:\n
{{#each subscription}}
- {{interest}}\n
{{/each}}
\nYou can change these settings at any time by
visiting the Preference Center at
https://www.example.com/prefererences/i.aspx?id={{meta.userId}}"
}
}

更多信息可以在这里找到: https://docs.aws.amazon.com/ses/latest/DeveloperGuide/send-personalized-email-advanced.html

关于amazon-web-services - 电子邮件模板中的 For 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46779000/

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