Saya memiliki templat email di Magento 2: email-template.html
{{template config_path="design/email/header_template"}}
{{trans "%body" body=$data.body}}
{{template config_path="design/email/footer_template"}}
Namun dalam variabel $data.body
adalah kode html bukan teks:
$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>
Jadi bagaimana cara merender kode html saat mengirim kirim email. Banyak terimakasih!
Hal ini terjadi ketika kode alasan print_r($this->_message->getBody());
di sendMessage()
fungsi: