Account overview
Account information
Name: {{ data.customer.firstname }} {{ data.customer.lastname }}
E-mail: {{ data.customer.email }}
E-mail: {{ data.customer.email }}
Addresses
Default billing address
- {{ (billing = data.customer.addresses.find(a => a.default_billing == true)).firstname }} {{ billing.lastname }}
- {{ billing.street[0] }} {{ billing.street[1] }} {{ billing.street[2] }}
- {{ billing.postcode }} {{ billing.city }} {{ billing.country_code }}
- T: {{ billing.telephone }}
Default shipping address
- {{ (shipping = data.customer.addresses.find(a => a.default_shipping == true)).firstname }} {{ shipping.lastname }}
- {{ shipping.street[0] }} {{ shipping.street[1] }} {{ shipping.street[2] }}
- {{ shipping.postcode }} {{ shipping.city }} {{ shipping.country_code }}
- T: {{ shipping.telephone }}
Latest orders
Order # | Date | Ship to | Order total | Status | |
---|---|---|---|---|---|
{{ order.number }} | {{ order.order_date }} | {{ order.shipping_address?.firstname }} {{ order.shipping_address?.lastname }} | {{ order.total.grand_total.value | price }} | {{ order.status }} |
|
You do not have any orders yet.