Mandrill 允许您mc:hideable
在 HTML 电子邮件中的元素上附加属性,如
<p mc:edit="section_1" mc:hideable>
Content that I only want to show on some emails.
<a href="http://link.to/do/something">
Because it has a link that only applies sometimes
</a>
</p>
<p mc:edit="section_2">
Variable content that I want to show every time.
</p>
使用此示例模板,使用该mc:edit="name"
属性,我可以通过消息 API 编辑“template_content”字段非常轻松地更改“section_2”中的内容,如下所示:
"template_content": [{"name": "section_2", "content": "Some content"}]
有没有办法隐藏“section_1”中的内容?看起来这应该很容易。