Sometimes you need to include a table in your emails. There are 2 ways to create tables:
HTML
To create a simple table in HTML, you can use this formatting as your basis:
<div>
<table>
<thead>
<tr>
<th>Add Column Title Here  </th>
<th>Add Column Title Here  </th>
<th>Add Column Title Here  </th>
</tr>
</thead>
<tbody>
<tr>
<td>Add Info for Row 1, Column 1 Here</td>
<td>Add Info Row 1, Column 2 Here</td>
<td>Add Info Row 1, Column 3 Here</td>
</tr>
</tbody>
</tr>
<td>Add Info for Row 2, Column 1 Here</td>
<td>Add Info Row 2, Column 2 Here</td>
<td>Add Info Row 2, Column 3 Here</td>
</tr>
</tbody>
</table>
</div>
Click the Edit Raw HTML button in the email template that you want to include the table in.
Paste and edit your table HTML code.
Your table renders in real-time in the preview pane.
As an Image
Alternatively, you can add an existing table as an image.
Click the Upload Image button in the email template that you want to include the table in.
Choose an image to upload from your computer. Apollo inserts the image into the body and renders it in the preview pane.