我创建了具有可重复部分的Mailchimp模板,如下所示:
<div class="article" mc:repeatable="article">
<h3 mc:edit="headline">Headline</h3>
<p mc:edit="author">Author</p>
</div>
当我使用Mailchimp API Playground检查此模板的默认内容(GET templates / my_template_id / default-content)时,可重复部分显示为repeat_1。
因此,当我需要使用此模板设置广告系列内容时,我必须填写参数:
{'template': {'id': 9999, 'sections': {'repeat_1': [{'headline': 'Headline01', 'author': 'author01'}, {'headline': 'Headline02', 'authors': 'author02'}]}}}
它在这种方式下工作正常,但是有什么方法可以使用更好的命名吗?我不想把它保留为repeat_1。
答案 0 :(得分:0)
收到来自Mailchimp支持的消息。
至于重命名模板的各个部分,这种灵活性尚未完全实现。目前,这些名称将自动填充。