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()
작동 할 때의 결과입니다 .