Snippet of abandoned checkout notification, informing customers of discount - https://www.shopify.com/partners/blog/shopify-email-notifications
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% capture email_title %} Your shopping cart is waiting for you {% endcapture %} | |
{% capture email_body %} | |
{% if billing_address.first_name %}Hi {{ billing_address.first_name }}, w{% else %} | |
W{% endif %}e noticed there {% if item_count == 1 %}was an item{% else %}were some items{% endif %} left in your shopping cart. | |
If you're ready to complete your order, your cart is waiting for your return, and you can even have a 15% discount on us. | |
{% endcapture %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment