Skip to content

Magento2.4.7: How to use conditional statements in email template?

This is the variable I want to use as a conditional statement.

will be 1 or 0 based on some condition

$isPlayerIncluded = 0;

inside my email template on code.

Vendor/Module/view/frontend/email/invoice_email.html

{{if isPlayerIncluded}}
<div>1</div>
{{else}}
<div>2</div>
{{/if}}

is this approach correct? and also its not working,