{% capture email_title %}
{% if item_count == 1 %}
You left an item in your cart
{% else %}
You left items in your cart
{% endif %}
{% endcapture %}
{% capture email_body %}
{% if billing_address.first_name %}
{% if item_count == 1 %}
Hi {{ billing_address.first_name }}, you added an item to your shopping cart and haven't completed your purchase. You can complete it now while it's still available.
click here to get 25% off discount.https://www.nicec.com.au/discount/WVD3M0QYY8S4
{% else %}
Hi {{ billing_address.first_name }}, you added items to your shopping cart and haven't completed your purchase. You can complete it now while they're still available.
{% endif %}
{% else %}
{% if item_count == 1 %}
Hi, you added an item to your shopping cart and haven't completed your purchase. You can complete it now while it's still available.
{% else %}
Hi, you added items to your shopping cart and haven't completed your purchase. You can complete it now while they're still available.
{% endif %}
{% endif %}
{% endcapture %}
{{ email_title }}