Actual Behaviour
Template should be rendered.
Expected Behaviour
Test email is not received. It's hard to say what is wrong. But when I replace table with ul or just p tags it works ok.
Steps to reproduce it
<html>
<body>
<table>
<tbody>
{{#each meetings}}
<tr>
<td>{{title}}</td>
<td>{{formatDate startAt "h:mm"}}</td>
<td>{{formatDate endAt "h:mm"}}</td>
</tr>
{{/each}}
</tbody>
</table>
</body>
</html>
{
"meetings": [
{
"title": "meeting 7",
"startAt": 1633023600,
"endAt": 1633023600
},
{
"title": "meeting 8",
"startAt": 1633023600,
"endAt": 1633023600
},
{
"title": "meeting 8",
"startAt": 1633023600,
"endAt": 1633023600
}
]
}
- Editor shows data in the table.
- Send test email
- No email received
If you replace table with list it works fine. If you delete formatDate helper it also works
Actual Behaviour
Template should be rendered.
Expected Behaviour
Test email is not received. It's hard to say what is wrong. But when I replace table with
ulor justptags it works ok.Steps to reproduce it
If you replace table with list it works fine. If you delete
formatDatehelper it also works