Emails
You can create and manage your email templates in 'Templates' -> 'Emails'.
The email templates can be used in automated workflow tasks, you can learn more about the process of email automation here.
To create a new template you need to click the 'Add' button at the top left corner.
You can edit or remove templates using the buttons next to the template`s name.
Keep in mind that you can`t remove system templates (they are essential for the functioning of hyperportal).
You can have a version of one email in each language. You can edit in version separately. You can switch between languages in the editor
The subject and email body have to be made separately for each language
You can use this feature to send emails in the preferred language of your customers(see the email node article to learn more).
You can learn more about the email builder here.
You can insert data from CMS entities (e.g. - the name of the customer, the model of the vehicle, etc.) in your emails. To do that you need to type the id of the needed property from the workflow process that will be sending the email. The property id should be in double curly brackets, like this - {{contact.firstName}}.
๏ปฟ
Example - We have an automated process that sends emails after the vehicle reservation.
We can put the name of the customer at the start of the email by leaving the property id of the field. The property id on the customer field in the process is 'contact'.
But the contact entity contains multiple fields, so to refer to the customer`s name you should find the property id of the field that contains the name.
It`s 'firstName'. So to refer to the customer`s name in the email you should enter this - {{contact.firstName}}.
You can learn more about the usage of expressions in the email templates here: https://handlebarsjs.com/guide/expressions.html#basic-usage๏ปฟ