test email

{{ "now" | date: "%m/%d/%y" }}
Invoice for {{ order_name }}

{{ shop_name }}

{{ shop.address }}
{{ shop.city }} {{ shop.province_code }} {{ shop.zip | upcase }}
{{ shop.country }}
{% if shipping_address or billing_address or shipping_method %}

Customer information

{% if shipping_address %} {% endif %} {% if billing_address %} {% endif %}

Shipping address

{{ shipping_address.name }}
{{ shipping_address.address1 }} {% if shipping_address.address2 %}
{{ shipping_address.address2 }} {% endif %}
{{ shipping_address.city }}, {{ shipping_address.province }} {{ shipping_address.zip }}
{{ shipping_address.country }}

Billing address

{{ billing_address.name }}
{{ billing_address.address1 }} {% if billing_address.address2 %}
{{ billing_address.address2 }} {% endif %}
{{ billing_address.city }}, {{ billing_address.province }} {{ billing_address.zip }}
{{ billing_address.country }}

{% if shipping_method %}

Shipping method

{{ shipping_method.title }}
{{ shipping_method.price | money }}

{% endif %}
{% endif %}

Item Details

{% for line_item in line_items %} {% endfor %}
Quantity Item Price
{{ line_item.quantity }} x {{ line_item.title }} {% if line_item.original_price != line_item.price %} {{ line_item.original_price | money }} {% endif %} {{ line_item.price | money }}
{% if transactions.size > 1 %}

Transaction Details

{% for transaction in transactions %} {% endfor %}
Type Amount Kind Status
{{ transaction.gateway | payment_method }} {{ transaction.amount | money }} {{ transaction.kind }} {{ transaction.status }}
{% endif %}

Payment Details

{% for discount in discounts %} {% endfor %} {% if shipping_address %} {% endif %} {% if total_paid != total_price %} {% endif %}
Subtotal price: {{ subtotal_price | money }}
Includes discount "{{ discount.code }}" {{ discount.savings | money }}
Total tax: {{ tax_price | money }}
Shipping: {{ shipping_price | money }}
Total price: {{ total_price | money }}
Total paid: {{ total_paid | money }}
Outstanding Amount: {{ total_price | minus: total_paid | money }}
{% if note %}

Note

{{ note }}

{% endif %}

If you have any questions, please send an email to {{ shop.email }}