{% capture email_title %}Complete your purchase{% endcapture %} {% capture email_body %}{% if item_count > 1 %}These items{% else %}This item{% endif %} will be reserved for you until: {{ reserve_inventory_until | date: "%B %d, %Y at %I:%M %p %Z" }}{% endcapture %} {{ email_title }}
 
{%- if shop.email_logo_url %} {{shop.name}} {%- else %}

{{ shop.name }}

{%- endif %}
INVOICE {{ name }}
 
 
{{ email_title }}
{% if custom_message != blank %}
{{ custom_message }}
{% elsif reserve_inventory_until %}
{{ email_body }}
{% endif %}
Complete your purchase
{% if custom_message != blank %}
 
{{ custom_message }}
{% endif %}
 
 
Order summary
 
{% for line in 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 }}
{{ line_title }} x {{ line_display }}
{% if line.product.description %}
{{ line.product.description }}
{% else %}
{{ line.price }}
{% endif %}
{% if line.original_line_price != line.line_price %}
{{ line.original_line_price | money }}
{% endif %}
{{ line.line_price | money }}
 
{% endfor %}
{% if discounts %} {% capture discount_title %}Discount {% if discounts.first.code %}({{ discounts.first.code }}){% endif %}{% endcapture %}
{{ discount_title }}
{{ discounts_savings | money }}
 
{% endif %}
Sub Total
{{ subtotal_price | money }}
 
Shipping
{{ shipping_price | money }}
 
{% for line in tax_lines %}
{{ line.title }}
{{ line.price | money }}
 
{% endfor %}
 
Total
{{ total_price | money_with_currency }}
{% assign transaction_size = 0 %} {% for transaction in transactions %} {% unless transaction.kind == "capture" or transaction.kind == "void" %} {% assign transaction_size = transaction_size | plus: 1 %} {% endunless %} {% endfor %} {% if transaction_size > 1 %} {% for transaction in transactions %} {% if transaction.status == "success" and transaction.kind == "authorization" or transaction.kind == "sale" %} {% if transaction.payment_details.credit_card_company %} {% capture transaction_name %}{{ transaction.payment_details.credit_card_company }} (ending in {{ transaction.payment_details.credit_card_last_four_digits }}){% endcapture %} {% else %} {% capture transaction_name %}{{ transaction.gateway | replace: "_", " " | capitalize }}{% endcapture %} {% endif %} {% endif %} {% if transaction.kind == 'refund' %} {% if transaction.payment_details.credit_card_company %} {% assign refund_method_title = transaction.payment_details.credit_card_company %} {% else %} {% assign refund_method_title = transaction.gateway %} {% endif %} {% endif %} {% endfor %}
{{ transaction_name }}
{{ transaction.amount | money }}
Refund
{{ refund_method_title | capitalize }}
- {{ transaction.amount | money }}
{% endif %}
 
{% if shipping_address or billing_address or shipping_method %}
 
Customer information
{% if shipping_address %} {% endif %} {% if billing_address %} {% endif %}
Shipping address
{{ shipping_address | format_address }}
Billing address
{{ billing_address | format_address }}
{% if shipping_method %}
 
Shipping method
{{ shipping_method.title }}
{{ shipping_method.price | money }}
{% endif %}
 
{% endif %}
 
{%- if shop.email_logo_url %} {{ shop.name }} {%- else %}

{{ shop.name }}

{%- endif %}
 
If you have any questions, reply to this email or contact us at {{ shop.email }}