How to alaign table in zimbra mail

To align a table in Zimbra Mail, you can use HTML code to format the table. Here are the steps:

  1. Compose a new email or reply to an existing one.
  2. Place your cursor where you want to insert the table.
  3. Type "<table border='1' cellpadding='5' cellspacing='0'>" to start the table. You can adjust the values of border, cellpadding, and cellspacing to customize the table's appearance.
  4. Add table rows and columns using the following syntax:
    <tr>
    <td>Cell 1</td>
    <td>Cell 2</td>
    </tr>

    Replace Cell 1 and Cell 2 with the content you want to display in each cell.

  5. To add more rows or columns, simply add more <tr> and <td> tags.
  6. To close the table, type "</table>".
  7. Send the email or save the draft.

Here's an example of a simple table:

<table border='1' cellpadding='5' cellspacing='0'>
  <tr>
    <td>Header Cell 1</td>
    <td>Header Cell 2</td>
  </tr>
  <tr>
    <td>Cell 1</td>
    <td>Cell 2</td>
  </tr>
  <tr>
    <td>Cell 3</td>
    <td>Cell 4</td>
  </tr>
</table>

This will create a table with three rows and two columns, with a border and some padding.

Note: Zimbra Mail uses a limited subset of HTML, so not all HTML tags are supported. However, the basic table structure and formatting options should work as expected.

Also, keep in mind that the table will be displayed as plain text in the email body, so it may not look exactly like a formatted table in a web browser. However, it should still be readable and easy to understand.