Emails sent out from you to your customers are rendered using Liquid. Liquid is a simple, easy-to-use programming language created by Shopify.
Business object
The following properties are available on the business object for use in your email templates.
{{ business.name }}
Quote object
The following properties are available on the quote object for use in your email templates under the quote heading.
{{ quote.reference }} {{ quote.total }} {{ quote.due_date }}
Invoice object
The following properties are available on the invoice object for use in your email templates under the invoice heading.
{{ invoice.reference }} {{ invoice.total }} {{ invoice.amount_due }} {{ invoice.due_date }}
Customer object
The following properties are available on the customer object for use in your email templates. The customer is available anywhere the quote or invoice object is available.
{{ customer.name }} {{ customer.primary_contact }} {{ customer.contacts }}
Contact object
The following properties are available on the contact object for use in your email templates. The contact is available anywhere customer is available.
{{ contact.name }} {{ contact.email }} {{ contact.phone }} {{ contact.primary }}