Ho un modello di email in Magento 2: email-template.html
{{template config_path="design/email/header_template"}}
{{trans "%body" body=$data.body}}
{{template config_path="design/email/footer_template"}}
Ma nella variabile $data.body
è il codice HTML non testo:
$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>
Quindi, come rendere il codice HTML quando si invia invia e-mail. Molte grazie!
Questo è il risultato quando scusa il codice print_r($this->_message->getBody());
in sendMessage()
funzione: