Add store personalisation
Customise a post-purchase campaign according to the shop where the purchase was made, for example to remind customers of its opening hours.
{% if order.store.external_id == ‘physique’ %}
Thank you for shopping at {{order.store.name}}.
The opening hours of your favourite store are as follows: {{order.store.custom_fields[‘opening_hours’]}}
{% endif %}

Updated 3 days ago