Code
{% capture email_title %}
{% if item_count == 1 %}
THE PERFECT ITEM IS STILL IN YOUR CART.
{% else %}
THE PERFECT ITEMS ARE STILL IN YOUR CART.
{% endif %}
{% endcapture %}
{% capture email_body %}
{% if billing_address.first_name %}
{% if item_count == 1 %}
Hi {{ billing_address.first_name }},
This is just a quick courtesy emal to remind you about your cart which will expire soon. Click below to let us transport you right back where you left off!
Use this exclusive discount code “custom5” to save 5% on orders over $180.
{% else %}
Hi {{ billing_address.first_name }},
This is just a quick courtesy emal to remind you about your cart which will expire soon. Click below to let us transport you right back where you left off!
Use this exclusive discount code “custom5” to save 5% on orders over $180.
{% endif %}
{% else %}
{% if item_count == 1 %}
Hi,
This is just a quick courtesy emal to remind you about your cart which will expire soon. Click below to let us transport you right back where you left off!
Use this exclusive discount code “custom5” to save 5% on orders over $180.
{% else %}
Hi,
This is just a quick courtesy emal to remind you about your cart which will expire soon. Click below to let us transport you right back where you left off!
Use this exclusive discount code “custom5” to save 5% on orders over $180.
{% endif %}
{% endif %}
{% endcapture %}
{{ email_title }}
.button__cell { background: {{ shop.email_accent_color }}; }
a, a:hover, a:active, a:visited { color: {{ shop.email_accent_color }}; }
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
{{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% else %}
{{ email_body }}
{% endif %}
|
|
{% for line in subtotal_line_items %}
{% endfor %}
{% if line.image %}
{% endif %}
|
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.quantity < line.quantity %}
{% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
{% else %}
{% assign line_display = line.quantity %}
{% endif %}
{{ line_title }} × {{ line_display }}
{% if line.variant.title != ‘Default Title’ %}
{{ line.variant.title }}
{% endif %}
{% if line.selling_plan_allocation %}
{{ line.selling_plan_allocation.selling_plan.name }}
{% endif %}
{% if line.refunded_quantity > 0 %}
Refunded
{% endif %}
{% if line.discount_allocations %}
{% for discount_allocation in line.discount_allocations %}
{% if discount_allocation.discount_application.target_selection != ‘all’ %}
![]()
{{ discount_allocation.discount_application.title | upcase }}
(-{{ discount_allocation.amount | money }})
{% endif %}
{% endfor %}
{% endif %}
|
|
|
{% if shop.url %}
If you have any other concerns, please feel free to message us at service@hexgaming.com
{% endif %}
|
|
|
|
Don't want to receive cart reminders from us? Unsubscribe
|
|
|