Can I Use a Table in a Sequence Email?

Article author
Matthew Charles
Updated

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&nbsp;&nbsp</th>
    <th>Add Column Title Here&nbsp;&nbsp</th>
    <th>Add Column Title Here&nbsp;&nbsp</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.

Edit HTML

Paste and edit your table HTML code.

HTML Code

Your table renders in real-time in the preview pane.

Preview

Back to Top

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.

Upload Image

Choose an image to upload from your computer. Apollo inserts the image into the body and renders it in the preview pane.

Image Preview

Back to Top