Hi there,
Really hoping someone could help us - we’re trying to get 3 different Order Confirmation emails based on product tags (or potentially Product Vendor).
We’ve been running the below with no luck.
Any help would be much appreciated!
Thanks in advance
{% capture email_title %}Thank you for your purchase! {% endcapture %}
{% capture email_body %}
{% if product.tags contains 'MarchCharge'
%}
Hi {{ customer.first_name }},
Thank you for placing your order.
Sport is proudly supporting Council’s shirt fulfilment for 2021.
You'll receive confirmation when your T-Shirt order will be delivered to you via Australia Post.
{% endif %}
Hi {{ customer.first_name }}, your order will be delivered to your team coach. Contact them for details.
If you have ordered any non-team items they will be delivered to your shipping address.
Hi {{ customer.first_name }}, we're getting your order ready to be shipped. We will notify you when it has been sent.
If you have ordered a team product as well then this item will be delivered to your coach.
{% endcapture %}