使用“新构建器”模板创建活动

问题描述 投票:0回答:1

我有一个 MailChimp 电子邮件模板,如下所示(注意 id 10564231)

enter image description here

我正在通过 API 创建一个新的营销活动

{
  "type": "regular",
  "recipients": {
    "list_id": "..."   
  },
  "settings": {
    "subject_line": "a test",
    "preview_text": "",
    "title": "",
    "from_name": "...",
    "reply_to": "...",    
    "template_id": 10564231
  },   
  "content_type": "template"
}

这有效,返回的 JSON 看起来类似于

{
...
    "settings" : {
    ...
    "template_id": 10564231
    }
}

但是,当您查看活动时,它不使用模板 - 相反,它有一些如下所示的占位符信息

enter image description here

enter image description here

它似乎已恢复为“经典构建器”并且未使用模板。

为什么mailchimp不使用模板?

顺便说一句,如果您使用使用“经典”构建器创建的模板,则一切正常

mailchimp mailchimp-api-v3.0
1个回答
0
投票

我遇到了同样的问题,问题是内容类型的设置。 API 文档有两个选项。

  • 模板 - 使用经典构建器
  • 多通道 - 使用新的构建器
© www.soinside.com 2019 - 2024. All rights reserved.