Other Examples

Different Content to Different US States

{% if cons_addr.state_abbr == "NY" %}

Hi New Yorkers!
{% elseif cons_addr.state_abbr == "NJ" %}
Hello New Jersey!
{% elseif cons_addr.state_abbr == "CA" %}
Hello Californian!
{% else%}
Hello Friend!
{% endif %}

Target Content to GMail users only

{%if "@gmail.com" in recipient.email|lower %}
GMail specific content here
{% endif %}