我正在尝试使用Messages / send-template.json API通过mandrill发送模板化电子邮件。此API要求在您提供的JSON中将template_content注入“name”和“content”。但是,在我的模板中,我不需要任何注入的内容。是否可以在这些字段中传递空值并仍使用模板?
答案 0 :(得分:0)
我最终在这里做的只是将空字符串传递给“name”和“content”,如:
"template_content": [
{
"name": "",
"content": "",
}
]