To start, we'll want to find an HTML Editor that we can use to create our email template. In this case we'll use "html-online" editor. And once there, clear the left side editor and start typing up how you would like the email to appear. You can use the available properties there to make it show you want. Below is our example.

To get the values of the variables, you would use '$' then the name of the variable. Its case sensitive so make sure its the same as you see it in the variables view.

Once done, copy the text on the right side. And open a text editor like notepad or something. Type in <html></html> and then paste your text in between those html blocks. If you like, you can do it in the html editor and then copying it after. Below is an example of how it should look after.

<html><p>This is an example email from the email block.</p>

<p>Below are the values for the variables:</p>

<p style="padding-left: 30px;"><strong>Damper</strong> is $damper</p>

<p style="padding-left: 30px;"><strong>Room Temp</strong> is $roomTemp</p>

<p style="padding-left: 30px;"><strong>Occ Mode</strong> is $occMode</p>

<p>That is it.</p></html>

Then copy the whole thing.