Actual Behaviour
Can not use with (https://handlebarsjs.com/guide/block-helpers.html#the-with-helper) block helper in email template. It does work in UI editor but actual email with the same test data does not contain the block.
Expected Behaviour
Email includes includes all blocks
Steps to reproduce it
{{#with data}}
{{one}}
{{two}}
{{three}}
{{/with}}
{
"data": {
"one": 1,
"two": 2,
"three": 3
}
}
- Check that UI editor shows
1 2 3
- Send test email
Actual Behaviour
Can not use
with(https://handlebarsjs.com/guide/block-helpers.html#the-with-helper) block helper in email template. It does work in UI editor but actual email with the same test data does not contain the block.Expected Behaviour
Email includes includes all blocks
Steps to reproduce it
1 2 3