{% assign lighter_gradient_color = "#00C6FF" %}
{% assign darker_gradient_color = "#0072FF" %}
{% capture order_id_text %}Order {{ order_name }}{% endcapture %}
{% if refund_line_items.size == item_count %}
{% capture email_title %}Your order has been refunded{% endcapture %}
{% elsif refund_line_items.size == 0 %}
{% capture email_title %}You have received a refund{% endcapture %}
{% else %}
{% capture email_title %}Some items in your order have been refunded{% endcapture %}
{% endif %}
{% capture email_body %}Total amount refunded: {{ amount | money_with_currency }}{% endcapture %}
{% capture intro_text_color %}#FFFFFF{% endcapture %}
{% capture view_order_link_text %}View your order →{% endcapture %}
{% capture view_order_button_color %}#FFFFFF{% endcapture %}
{% capture cart_items_heading_text %}Order summary{% endcapture %}
{{ email_title }}
|
{%- if shop.email_logo_url %}
{%- else %}
{%- endif %}
|
|
|
|
{{ order_id_text }}
{{ 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 %}
|
|