|
|
|
|
|
Hello {{ customer.name }},
thank you for your order.
Please check the details below to make sure everything
is correct - we want to make sure your order is perfect!
Order Number: {{ id }}
Order Date: {{ order.orderDate }}
Payment Reference: {{ order.reference }}
|
|
|
|
| |
{% for product, price in order.products %}
|
{{ product }}:
|
£{{ price|number_format(2, '.', ',') }}
|
{% endfor %}
|
|
Card message:
{{ order.message|raw|nl2br }}
|
|
{% if order.discount > 0 %}
|
Discount:
|
£{{ order.discount|number_format(2, '.', ',') }}
|
|
{% endif %}
|
Delivery:
|
£{{ order.delivery.cost|number_format(2, '.', ',') }}
|
|
|
Total before VAT:
|
£{{ order.totalExVat|number_format(2, '.', ',') }}
|
|
|
VAT:
|
£{{ order.vat|number_format(2, '.', ',') }}
|
|
|
Order Total:
|
£{{ order.total|number_format(2, '.', ',') }}
|
|
{% if order.posyPoints > 0 %}
|
Your order today is worth
{{ order.posyPoints }} Posy Points. Saving you £{{ (order.posyPoints / 100)|number_format(2, '.', ',') }} off your next order!
|
|
{% endif %}
|
|
|
Your card is on its way to:
{% for element in order.recipient %}
{% if element != '' %}
{{ element }}{% if loop.last == false %},{% endif %}
{% endif %}
{% endfor %}
Estimated delivery date: {{ order.delivery.date }}
{{ order.delivery.description }}
{% if order.delivery.instructions %}
Delivery Instructions: {{ order.delivery.instructions }}
{% endif %}
|
|
|
|
{% if not isRegistered %}
|
|
{% endif %}
 |
|
|
| |
|
|
|
|
Bunches Florapost Ltd registered in England and Wales No: 3924234 - VAT Reg: 509377820
© Bunches.co.uk
Contact us
|
|