{% assign lighter_gradient_color = "#00C6FF" %}
{% assign darker_gradient_color = "#0072FF" %}
{% 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 %}
{% capture intro_text_color %}#FFFFFF{% endcapture %}
{% capture cart_items_heading_text %}Refunded items{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
|
{{ email_title }}
{{ email_body }}
|
|
|
|
{{ cart_items_heading_text }}
|
|
{% 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 %}
{{ line_title }}
{% if line.product.description %}
{{ line.product.description }}
{% endif %}
|
x{{ line.quantity }} |
{% 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 %}
| Subtotal: |
{{ 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 %}
|
|