PHP Mandrillapp使用addGlobalMergeVar发送原始html

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

有没有机会发送原始html eq。订购表到MandrillApp模板而不是raw html

我试过以下代码:

$itemTable = 'html table'
->addGlobalMergeVar('order_items_table_content', $itemTable);

我的车把html模板:

   {{ order_items_table_content }}
php html email mandrill
1个回答
1
投票

如果您使用车把,请使用三个{而不是两个。

这将被转义:

{{ my_html_value }}

这不会被转义:

{{{ my_html_value }}}

更多信息:https://mandrill.zendesk.com/hc/en-us/articles/205582537-Using-Handlebars-for-Dynamic-Content

© www.soinside.com 2019 - 2024. All rights reserved.