The whole purpose of adding a "table" to the email content is to keep your content obvious, structured, and easy to navigate. This helps your subscribers quickly locate the crucial data that interests them, so they find it easy to read your emails.

Currently, there is no direct method to add a table to the email campaign, however, you can add the table using the "HTML" content block.

Navigate to the marketing automation module>>Click Email Campaigns -> Create an email campaign and provide your campaign name. 


Fill in the mandatory details under the "Configure' section.

Then navigate to the "style' section.


Style:
Choose from our existing themes based on categories like Newsletter, Transactional, Offers, etc., for your emails. The categories can be chosen from the All templates dropdown.


The next section would be the Design.

Design:
You can customize your emails based on the different editing options that we have. A new HTML block can be inserted providing an option to manually include the HTML code which we want to show on the email.


You can add your own HTML code in the content properties section of the editor.



I am sharing the same highlighted code for your reference below.

<style>
  table,
  th,
  td {
    border: 1px solid black;

  }

  th,
  td {
    padding: 5px;
  }

  th {
    text-align: left;
  }
</style>


<table style="width:100%">
  <tr>
    <b>Package</b>
    <th style="border: 1px solid black;">Destination </th>
    <th style="border: 1px solid black;">Days</th>
    <th style="border: 1px solid black;">Price</th>

  </tr>
  <tr>
    <td style="border: 1px solid black;">THAILAND</td>
    <td style="border: 1px solid black;">6 Days / 5 Nights</td>
    <td style="border: 1px solid black;">7000 USD</td>


  </tr>
  <tr>
    <td style="border: 1px solid black;">THE PHILIPPINES</td>
    <td style="border: 1px solid black;"> 4 Days / 3 Nights</td>
    <td style="border: 1px solid black;">5000 USD</td>
  </tr>
  <tr>
    <td style="border: 1px solid black;">QUEENSLAND, AUSTRALIA</td>
    <td style="border: 1px solid black;">6 Days / 5 Nights</td>
    <td style="border: 1px solid black;">4500 USD</td>

  </tr>
  <tr>
    <td style="border: 1px solid black;">HAWAII, USA</td>
    <td style="border: 1px solid black;"> 7 Days / 6 Nights</td>
    <td style="border: 1px solid black;">4000 USD</td>

  </tr>
  <tr>
    <td style="border: 1px solid black;">CAPE TOWN, SOUTH AFRICA</td>
    <td style="border: 1px solid black;"> 5 Days / 4 Nights</td>
    <td style="border: 1px solid black;">3000 USD</td>

  </tr>
  <tr>
    <td style="border: 1px solid black;">TURKS and CAICOS</td>
    <td style="border: 1px solid black;"> 7 Days / 6 Nights</td>
    <td style="border: 1px solid black;">6400 USD</td>

  </tr>

</table>


After you’ve completed it, you can save the current design. You can preview your design on different devices like mobile, desktop, and tablet. A test email can be sent to a maximum of 5 contacts from the preview. This gives a glimpse of how your email will look like to the user. 

Finally, you can send out the campaign and the email will look like below in your inbox.