How to make table in compose mail

In Compose Mail, you can create a table by using the "Table" feature. Here's how:

Method 1: Using the Table Button

  1. Open Compose Mail and start writing your email.
  2. Place your cursor where you want to insert the table.
  3. Click on the "Insert" menu and select "Table" from the dropdown list.
  4. A table editor will appear. You can customize the table settings, such as the number of rows and columns, table border, and cell alignment.
  5. Click "Insert" to add the table to your email.

Method 2: Using HTML Code

  1. Open Compose Mail and start writing your email.
  2. Place your cursor where you want to insert the table.
  3. Type the following HTML code to create a table: <table border="1">
  4. Add the table rows and columns using the <tr> and <td> tags. For example: <tr><td>Cell 1</td><td>Cell 2</td></tr>
  5. Close the table tag with </table>
  6. Compose Mail will render the table in your email.

Here's an example of the HTML code:

<table border="1">
  <tr>
    <td>Cell 1</td>
    <td>Cell 2</td>
  </tr>
  <tr>
    <td>Cell 3</td>
    <td>Cell 4</td>
  </tr>
</table>

Tips and Variations