Skip to main content

Types of templates

Types of templates

There are two kinds of templates: EmailTemplates and DocumentTemplates.

Both template share a couple of field, namely:

FieldDescription
IDThe ID if the template, UUID v7 format
NamesThe display name of the template, per given language
ContentsA handlebars template which outputs the html for the template, per given language
Custom QueryA custom graphql query that you can use to enrich the event payload data
Query variablesVariables used to execute the custom query, supports handlebars variables. The final result after rendering with handlebars should be a valid json. This is the only handlebars field that's rendered only with the original event payload. Any other field with handlebars support, also includes the data fetched by the custom query

EmailTemplates

Email templates are used to send out an email based on the given event payload, and can be linked directly to an Event Action

Email templates include additional fields needed to send out emails.

FieldDescription
SubjectThe subject of the emails to send out, per given language. Supports use of handlebars variables.
FromThe sender of the email. Consists of 2 fields, an email address and a name the name can be translated into multiple languages
TosAn array of EmailContacts
CcsAn array of EmailContacts
BccsAn array of EmailContacts
AttachmentsAn array of document templates that will be rendered and send as attached PDF with the email

EmailContact

FieldDescription
EmailThe email address of the contact, this fields supports handlebars variables
Name(optional) The display name of the contact, this fields supports handlebars variables

DocumentTemplates

Document templates are used to generate PDF documents based on the given event payload. The can be added to an EmailTemplate as attachment, or can be generated from dedicated mutations, like getOrderPDF and getQuotePDF, these methods select the documentTemplate with isDefaultOrderPdf or isDefaultQuotePdf resp.

FieldDescription
FileNamesThe proposed file name for the generated PDF document, per given language. Will be used for the file name when attached to an EmailTemplate, can be use in the Content-Disposition header when loading the template in the frontend
isDefaultOrderPdfIndicates this template will be used when generating a order PDF in the Propeller Backoffice or when calling the orderGetPDF mutation in the API
isDefaultQuotePdfIndicates this template will be used when generating a quote PDF in the Propeller Backoffice or when calling the quoteGetPDF mutation in the API