{% assign lighter_gradient_color = "#00C6FF" %}
{% assign darker_gradient_color = "#0072FF" %}
{% 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 %}
{% capture intro_text_color %}#FFFFFF{% endcapture %}
{% capture order_link_text %}VIEW MY ORDER →{% endcapture %}
{% capture cart_items_heading_text %}In your cart{% endcapture %}
{% capture checkout_button_text %}Proceed to checkout →{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
|
{{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% else %}
{{ email_body }}
{% endif %}
|
|
{{ order_link_text }}
|
|
|
|
{{ cart_items_heading_text }}
|
|
{% 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 }}
{% endif %}
|
x{{ line.quantity }} |
|
|
{% endfor %}