{% 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 that you still have {% if item_count == 1 %}one item{% else %}some items{% endif %} in your shopping cart.
If you're ready to complete your order, your cart is waiting for your return.
{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
{{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% else %}
{{ email_body }}
{% endif %}
|
|
{% for line in line_items %}
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.quantity < line.quantity %}
{% capture line_description %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
{% else %}
{% capture line_description %} {{ line.price }} {% endcapture %}
{% endif %}
{% if line.image %}
|
{% endif %}
{{ line_title }}
{% if line.product.description %}
{{ line.product.description }}
{% else %}
{{ line.price }}
{% endif %}
|
{% if line.product.description %}
x {{ line.quantity }}
{% endif %}
|
|
{% endfor %}
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
If you have any questions, reply to this email or contact us at {{ shop.email }}
|
|
|
|