作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们可以为 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}}"
}
}
关于amazon-web-services - 电子邮件模板中的 For 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46779000/
我是一名优秀的程序员,十分优秀!