Skip to content

ELSEIF

Example of two separate conditions:

<if condition="SubscriberGeoCountry == 'US'">
<p>Special offer for USA: 10% off!</p>
</if>
<else if="SubscriberGeoCountry == 'GB'">
<p>Special offer for United Kingdom: 15% off!</p>
</else>
On this page
To top