{% capture email_title %}Additional payment of {{ order.total_outstanding | money }} is needed to update your order{% endcapture %}
{{ email_title }}
| |
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
{{ order_name }}
|
| |
| |
|
{{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% endif %}
{% if checkout_payment_collection_url %}
{% endif %}
|
| |
{% for line in subtotal_line_items %}
{% if line.product.title %}
{% assign line_title = line.product.title %}
{% else %}
{% assign line_title = line.title %}
{% endif %}
{% if line.image %}
|
{% endif %}
{% if line.quantity < line.quantity %}
{% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
{% else %}
{% assign line_display = line.quantity %}
{% endif %}
{{ line_title }} x {{ line_display }}
{% if line.product.description %}
{{ line.product.description | strip_html | truncatewords: 20 }}
{% else %}
{{ line.price }}
{% endif %}
|
{% if line.original_line_price != line.line_price %}
{{ line.original_line_price | money }}
{% endif %}
{{ line.line_price | money }}
|
|
|
{% endfor %}
{% 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 %}
|
Sub Total
|
{{ subtotal_price | money }}
|
|
Shipping
|
{{ shipping_price | money }}
|
|
Taxes
|
{{ tax_price | money }}
|
{% if total_tip and total_tip > 0 %}
|
Tip
|
{{ total_tip_received | money }}
|
{% endif %}
|
Updated total
|
{{ total_price | money }}
|
|
Already paid
|
{{ net_payment | money }}
|
|
Amount to pay
|
{{ total_outstanding | money_with_currency }}
|
|
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
If you have any questions, reply to this email or contact us at {{ shop.email }}
|
| |
|
|