3 Create an Email Template

Creating e-mail templates

The e-mail template is now ready to be used. The template should always start and end with backtick `

On top of the form, you will see a list of variables that you can use in the template. The variables are the named after the inputs in the form. (The value you entered in the name attribute)

There is also 1 function, to show models. The function is called model("model-name"), usage example can be seen below.

`
Hello this is the text that will be sent in the email!
 
This is the value of the input named "name": ${name}
 
And these are the entries in the 'architects' section:
${model("model_architect")}
`