Mandrill - 在X-MC-MergeVars中发送HTML标签

时间:2018-03-07 09:12:34

标签: mandrill

我尝试在X-MC-MergeVars内为我的Mandrill车把模板发送HTML标签,但似乎无法正常工作。

PHP部分:

[...]
$message->getHeaders()->addTextHeader("X-MC-MergeVars", json_encode(["foo" => "b<strong>a</strong>r"]));

Mandrill模板部分:

[...]
Here is my var {{foo}}

结果

Here is my var b<strong>a</strong>r

您知道Mandrill是否可以在字符串中翻译HTML?

谢谢

1 个答案:

答案 0 :(得分:1)

实际上解决方案非常简单 您必须用三重支柱{{

替换双支撑{{{
[...]
Here is my var {{{foo}}}

Mandrill API(HTML转义)

  

Handlebars HTML-escapes {{expression}}返回的值。如果您不希望Handlebars逃脱某个值,请使用&#34; triple-stash&#34;,&#34; {{{。