|
Hello {{ customer_order.customer_name }} 👋
|
{% for entry in entries %}
|
The status of your shipment {{ entry.number }} has been changed from {{ entry.old_status }} to {{ entry.new_status }}
|
{% endfor %}
|
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}}
|
|
|
|
|
|
|