我在Magento 2中有电子邮件模板:email-template.html
{{template config_path="design/email/header_template"}}
{{trans "%body" body=$data.body}}
{{template config_path="design/email/footer_template"}}
但是在变量中$data.body
是代码html而不是文本:
$data.body = `
<table width="100%">
<tr>
<td>Name: </td> <td>Join Xanka </td>
</tr>
<tr> <td>Email: </td> <td>xanka@gmail.com</td> </tr>
{{depend Test Send}}
<tr> <td>Subject: </td> <td>Test Send</td> </tr>
{{/depend}}
<tr> <td>Message: </td> <td>we try send email use to test.</td> </tr>
</table>
因此,如何在发送发送电子邮件时呈现代码html。多谢!
这是print_r($this->_message->getBody());
在sendMessage()
函数中使用借口代码时的结果: