|
Hello {{ customer_order.customer_name }} 👋
|
|
Thank you for your purchase! We have received your order, and we will notify you once it has been dispatched.
|
|
Order details:
|
|
No. Invoice: {{customer_order.number}}
|
|
|
{% for line_item in customer_order.items %}
|
|
|
|
{{line_item.name}}
|
|
Code: {{line_item.sku}}
|
|
|
|
|
{{line_item.quantity}} pcs
|
|
|
|
|
{{line_item.price}} {{line_item.currency}}
|
|
|
|
{% endfor %}
|
Subtotal: {{customer_order.sub_total}} {{customer_order.currency}} Discount: {{customer_order.discount_total}} {{customer_order.currency}} Tax: {{customer_order.discount_total}} {{customer_order.currency}} Total: {{customer_order.total}} {{customer_order.currency}}
|
|
|
|
|
|
|