{% capture email_title %}Your order has been canceled{% endcapture %}
{% capture email_body %}
Order {{ name }} was canceled
{% case cancel_reason %}
{% when 'customer' %}
at your request
{% when 'inventory' %}
because we did not have enough stock to fulfill your order
{% when 'fraud' %}
because we suspect it is fraudulent
{% when 'other' %}
due to unforeseen circumstances
{% endcase %}
{% if financial_status == 'voided' %}
and your payment has been voided.
{% elsif financial_status == 'refunded' %}
and your payment has been refunded.
{% endif %}
{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
ORDER {{ order_name }}
|
|
|
{{ email_title }}
{{ email_body }}
|
|
{% 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 }} 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 %}
{{ transaction_name }}
|
{{ transaction.amount | money }}
|
{% 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 %}
Refund
{{ refund_method_title | capitalize }}
|
- {{ transaction.amount | money }}
|
{% endif %}
{% endfor %}
{% endif %}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
If you have any questions, reply to this email or contact us at {{ shop.email }}
|
|
|
|