How to use TWIG

@developer - you have to enable the template engine first from /backend/index.php/settings/campaigns/template-engine then you can use the twig syntax in your templates:
Code:
{% if FNAME == 'John' %}
<p>You are john doe.</p>
{% endif %}
 
Back
Top