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 %}
{% if shipping_address %}
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 }}
|
|
{% endif %}
{% if billing_address %}
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 }}
|
{% endif %}
{% if shipping_method %}
Shipping method
{{ shipping_method.title }} {{ shipping_method.price | money }}
|
{% endif %}
|
|
{% endif %}
Item Details
Quantity |
Item |
Price |
{% for line_item in line_items %}
{{ 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 }}
|
{% endfor %}
{% if transactions.size > 1 %}
Transaction Details
Type |
Amount |
Kind |
Status |
{% for transaction in transactions %}
{{ transaction.gateway | payment_method }} |
{{ transaction.amount | money }} |
{{ transaction.kind }} |
{{ transaction.status }} |
{% endfor %}
{% endif %}
Payment Details
Subtotal price: |
{{ subtotal_price | money }} |
{% for discount in discounts %}
Includes discount "{{ discount.code }}" |
{{ discount.savings | money }} |
{% endfor %}
Total tax: |
{{ tax_price | money }} |
{% if shipping_address %}
Shipping: |
{{ shipping_price | money }} |
{% endif %}
Total price: |
{{ total_price | money }} |
{% if total_paid != total_price %}
Total paid: |
{{ total_paid | money }} |
Outstanding Amount: |
{{ total_price | minus: total_paid | money }} |
{% endif %}
{% if note %}
Note
{{ note }}
{% endif %}
If you have any questions, please send an email to {{ shop.email }}