【发布时间】:2019-05-10 13:53:28
【问题描述】:
我的电子邮件模板有一些介绍性文本,后跟一个可重复的块 [一张图片 + 一个按钮]。
我想重复这个块 X 次,每次都用新链接更新图片链接和按钮链接。
目前我正在使用此有效负载来编辑一个块,并且它按预期工作。我以this SO answer 为指导。
var data = {
'template': {
'id': template_id,
'sections': {
'editbutton': '<a class="mcnButton " title="Get Profile" href="' + button1 + '" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-align: center;text-decoration: none;color: #FFFFFF;">GET DATA</a>',
'editimage': '<img alt="" src="' + image1 + '" width="564" style="max-width:564px; padding-bottom: 0; display: inline !important; vertical-align: bottom;" class="mcnImage">'
}
}
};
我正在努力重复这个块并更新图像和按钮链接。
我正在使用 Google Apps 脚本,但我想问题在于语言的独立性。
任何帮助将不胜感激。 谢谢。
【问题讨论】:
标签: mailchimp mailchimp-api-v3.0