As you know Moto CMS 3 store widgets have email notification feature that contains custom information from customer's order. This information is added by using special keys to take the info from customer's orders.
Here is a full list of keys you can use in these emails:
{{order.orderId}}
- Order ID if this transaction.
{{order.customerId}}
- Customer ID
{{order.createdAt}}
- Creation date
{{order.updatedAt}}
- Date of the last changes
{{order.firstName}}
- Customers first name
{{order.lastName}}
- Customers last name
{{order.company}}
- Company name
{{order.address1}}
- Address 1
{{order.address2}}
- Address 2
{{order.postCode}}
- Zip code
{{order.city}}
- City
{{order.country.name}}
- Country name
{{order.state.name}}
- State name
{{order.contactPhone}}
- Phone
{{order.subtotalPrice}}
- Price for purchased products
{{order.taxPrice}}
- Tax for this purchase
{{order.totalPrice}}
- Total price(product + taxes)
{{order.totalWeight}}
- Total weight
{{order.discountCode}}
- Promo code
{{order.discount}}
- Amount of discount received.
{{order.comment}}
- Customer's comment
{% for product in order.products %}
{{ product.name }} - Product Title
{{ product.quantity }} - units quantity
{{ product.totalPrice }} - Units Total Price
{% endfor %}
- Shows full list of purchased products.
Comments