{{> header title="Order Receipt" }} Dear {{ order.customer.firstName }} {{ order.customer.lastName }}, Thank you for your order! Order Code {{ order.code }} Order Date {{ formatDate order.orderPlacedAt }} Total Price {{ formatMoney order.total order.currencyCode 'en' }} {{#with order.shippingAddress }}

Shipping To: {{ fullName }}

    {{#if company}}
  • {{ company }}
  • {{/if}} {{#if streetLine1}}
  • {{ streetLine1 }}
  • {{/if}} {{#if streetLine2}}
  • {{ streetLine2 }}
  • {{/if}} {{#if city}}
  • {{ city }}
  • {{/if}} {{#if province}}
  • {{ province }}
  • {{/if}} {{#if postalCode}}
  • {{ postalCode }}
  • {{/if}} {{#if country}}
  • {{ country }}
  • {{/if}} {{#if phoneNumber}}
  • {{ phoneNumber }}
  • {{/if}}
{{/with}}

Order Summary:

{{#each order.lines }} {{ productVariant.name }} {{ quantity }} x {{ productVariant.name }} {{ productVariant.quantity }} {{ formatMoney discountedLinePriceWithTax ../order.currencyCode 'en' }} {{/each}} {{#each order.discounts }} {{ description }} {{ formatMoney amount ../order.currencyCode 'en' }} {{/each}} Sub-total: {{ formatMoney order.subTotalWithTax order.currencyCode 'en' }} {{#each shippingLines }} Shipping ({{ shippingMethod.name }}): {{ formatMoney priceWithTax ../order.currencyCode 'en' }} {{/each}} Total: {{ formatMoney order.totalWithTax order.currencyCode 'en' }}
{{> footer }}