|
|
{% if customer.name %}Dear {{ customer.name }},{% endif %}
|
|
|
|
|
|
|
{{ shop_name | capitalize }} has refunded your order {{ name }}{% if amount > 0 %} a total of {{ amount | money_with_currency }}{% endif %}{% if refund_line_items.size > 0 %} for: {% endif %}
|
|
{% for line in refund_line_items %}
|
{{ line.quantity }} x {{ line.line_item.title }}
|
{% endfor %}
|
|
|
|
|
Thanks for shopping!
|
|
{{ shop.name | capitalize }}
|
|
|
|
|
|