PHP Mandrillapp 使用 addGlobalMergeVar 发送原始 html
PHP Mandrillapp send raw html with addGlobalMergeVar
是否有机会发送原始 html
eq。将 table 订购到 MandrillApp
模板,得到的不是 raw html
?
我试过以下代码:
$itemTable = 'html table'
->addGlobalMergeVar('order_items_table_content', $itemTable);
我的把手 html 模板:
{{ order_items_table_content }}
如果您使用车把,请使用三个 {
而不是两个。
这将被转义:
{{ my_html_value }}
这个不会被转义:
{{{ my_html_value }}}
更多信息:https://mandrill.zendesk.com/hc/en-us/articles/205582537-Using-Handlebars-for-Dynamic-Content
是否有机会发送原始 html
eq。将 table 订购到 MandrillApp
模板,得到的不是 raw html
?
我试过以下代码:
$itemTable = 'html table'
->addGlobalMergeVar('order_items_table_content', $itemTable);
我的把手 html 模板:
{{ order_items_table_content }}
如果您使用车把,请使用三个 {
而不是两个。
这将被转义:
{{ my_html_value }}
这个不会被转义:
{{{ my_html_value }}}
更多信息:https://mandrill.zendesk.com/hc/en-us/articles/205582537-Using-Handlebars-for-Dynamic-Content