|
Hello {{ customer_order.customer_name }} 👋
|
|
Your order {{ customer_order.number}} has been sent.
Number parcels being sent: {{ customer_order.shipments | size}}.
Parcels tracking numbers: {% for shipment in customer_order.shipments %}
{{ shipment.number}}{% endfor %} Sent date: {{ customer_order.modified_date }}.
|
|
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}}
|
|
|
|
|
|
|