0

我有一个模板保存在山魈中,具有可重复的内容。我正在使用 rails 中的 mandrill_mailer gem 使用此模板发送邮件。如何在 template_content 中指定可重复的内容

<tr mc:repeatable><td mc:edit="name"></td></tr>

(mandrill_mail template: "test template",\
  subject: "xxxxxxx",\
  to: "xxxxx@gmail.com",\
  important: true,\
  inline_css: true,\
  template_content: {'name' => "p1"}).deliver

我尝试使用 template_content: {'name00' => "p1"} / template_content: {'name:0' => "p1"} 这么多的排列和组合。

4

1 回答 1

1

Mandrill 不支持来自 MailChimp 模板语言的可重复项。有关使用模板的更多详细信息和一些限制,请参阅以下资源:

http://help.mandrill.com/entries/21694286-How-do-I-add-dynamic-content-using-editable-regions-in-my-template-

请参阅其中的注释:“Mandrill 支持 MailChimp 模板语言的一个特定元素:可编辑内容区域(也称为 mc:edit 区域)。”

http://kb.mailchimp.com/article/mandrill-for-mailchimp-users#templates

于 2013-12-19T16:21:47.463 回答