{% set currencyIsoCode = order.currency.isoCode %} {% if order.orderCustomer.salutation %}{{ order.orderCustomer.salutation.translated.letterName ~ ' ' }}{% endif %}{{ order.orderCustomer.firstName }} {{ order.orderCustomer.lastName }},

We have received your order from {{ order.orderDateTime|format_datetime('medium', 'short', locale='en-GB') }}.

Order number: {{ order.orderNumber }}

As soon as your payment has been made, you will receive a separate notification and your order will be processed.

You may check the current status of your order with this link: {{ rawUrl('frontend.account.order.single.page', { 'deepLinkCode': order.deepLinkCode }, salesChannel.domains|first.url) }}
You may use this link to edit your order, change the payment method or make additional payments.

Information on your order:

{% for lineItem in order.nestedLineItems %} {% set nestingLevel = 0 %} {% set nestedItem = lineItem %} {% block lineItem %} {% if nestedItem.children.count > 0 %} {% set nestingLevel = nestingLevel + 1 %} {% for lineItem in nestedItem.children %} {% set nestedItem = lineItem %} {{ block('lineItem') }} {% endfor %} {% endif %} {% endblock %} {% endfor %}
Prod. no. Product image Description Quantities Price Total
{% if nestedItem.payload.productNumber is defined %}{{ nestedItem.payload.productNumber|u.wordwrap(80) }}{% endif %} {% if nestedItem.cover is defined and nestedItem.cover is not null %}{% endif %} {% if nestingLevel > 0 %} {% for i in 1..nestingLevel %} {% endfor %} {% endif %} 0 %} style="padding-left: {{ (nestingLevel + 1) * 10 }}px"{% endif %}> {{ nestedItem.label|u.wordwrap(80) }} {% if nestedItem.payload.options is defined and nestedItem.payload.options|length >= 1 %}
{% for option in nestedItem.payload.options %} {{ option.group }}: {{ option.option }} {% if nestedItem.payload.options|last != option %} {{ " | " }} {% endif %} {% endfor %}
{% endif %} {% if nestedItem.payload.features is defined and nestedItem.payload.features|length >= 1 %} {% set referencePriceFeatures = nestedItem.payload.features|filter(feature => feature.type == 'referencePrice') %} {% if referencePriceFeatures|length >= 1 %} {% set referencePriceFeature = referencePriceFeatures|first %}
{{ referencePriceFeature.value.purchaseUnit }} {{ referencePriceFeature.value.unitName }} ({{ referencePriceFeature.value.price|currency(currencyIsoCode) }}* / {{ referencePriceFeature.value.referenceUnit }} {{ referencePriceFeature.value.unitName }})
{% endif %} {% endif %}
{{ nestedItem.quantity }} {{ nestedItem.unitPrice|currency(currencyIsoCode) }} {{ nestedItem.totalPrice|currency(currencyIsoCode) }}
{% set delivery = order.deliveries.first %} {% set displayRounded = order.totalRounding.interval != 0.01 or order.totalRounding.decimals != order.itemRounding.decimals %} {% set decimals = order.totalRounding.decimals %} {% set total = order.price.totalPrice %} {% if displayRounded %} {% set total = order.price.rawTotal %} {% set decimals = order.itemRounding.decimals %} {% endif %}



{% for shippingCost in order.deliveries %} Shipping costs: {{ shippingCost.shippingCosts.totalPrice|currency(currencyIsoCode) }}
{% endfor %} Net total: {{ order.amountNet|currency(currencyIsoCode) }}
{% for calculatedTax in order.price.calculatedTaxes %} {% if order.taxStatus is same as('net') %}plus{% else %}including{% endif %} {{ calculatedTax.taxRate }}% VAT. {{ calculatedTax.tax|currency(currencyIsoCode) }}
{% endfor %} {% if not displayRounded %}{% endif %}Total gross: {{ total|currency(currencyIsoCode,decimals=decimals) }}{% if not displayRounded %}{% endif %}
{% if displayRounded %} Rounded total gross: {{ order.price.totalPrice|currency(currencyIsoCode,decimals=order.totalRounding.decimals) }}
{% endif %}
{% if delivery %} Selected shipping type: {{ delivery.shippingMethod.translated.name }}
{{ delivery.shippingMethod.translated.description }}

{% endif %} {% set billingAddress = order.addresses.get(order.billingAddressId) %} Billing address:
{{ billingAddress.company }}
{{ billingAddress.firstName }} {{ billingAddress.lastName }}
{{ billingAddress.street }}
{{ billingAddress.zipcode }} {{ billingAddress.city }}
{{ billingAddress.country.translated.name }}

{% if delivery %} Shipping address:
{{ delivery.shippingOrderAddress.company }}
{{ delivery.shippingOrderAddress.firstName }} {{ delivery.shippingOrderAddress.lastName }}
{{ delivery.shippingOrderAddress.street }}
{{ delivery.shippingOrderAddress.zipcode}} {{ delivery.shippingOrderAddress.city }}
{{ delivery.shippingOrderAddress.country.translated.name }}

{% endif %} {% if order.orderCustomer.vatIds %} Your VAT-ID: {{ order.orderCustomer.vatIds|first }} In case of a successful order and if you are based in one of the EU countries, you will receive your goods exempt from turnover tax.
{% endif %}
You can check the current status of your order on our website under "My account" - "My orders" anytime: {{ rawUrl('frontend.account.order.single.page', { 'deepLinkCode': order.deepLinkCode }, salesChannel.domains|first.url) }}
If you have any questions, do not hesitate to contact us.