我有一个模板保存在山魈中,具有可重复的内容。我正在使用 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"} 这么多的排列和组合。