J'ai un modèle d'e-mail dans Magento 2: email-template.html
{{template config_path="design/email/header_template"}}
{{trans "%body" body=$data.body}}
{{template config_path="design/email/footer_template"}}
Mais en variable, le $data.body
code html n'est pas du texte:
$data.body = `
<table width="100%">
<tr>
<td>Name: </td> <td>Join Xanka </td>
</tr>
<tr> <td>Email: </td> <td>[email protected]</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>
Alors, comment rendre le code html lors de l'envoi d'un e-mail. Merci beaucoup!
C'est le résultat lorsque le code d'excuse print_r($this->_message->getBody());
en sendMessage()
fonction:
Avec
{{trans "%body" body=$data.body}}
à{{trans "%body" body=$data.body|raw}}
.N'oubliez pas de passer
type="text"
àtype="html"
inemail_templates.xml
, sinon vous obtiendrez du HTML simple dans vos e-mails.la source