Google mail html email

Here is an example of an HTML email that can be sent using Google Mail:

Subject: Test HTML Email

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Test HTML Email</title>
  <style>
    /* Add some basic styling to our email */
    body {
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.5;
      padding: 20px;
      color: #333;
    }
  </style>
</head>
<body>
  <h1>Welcome to our email!</h1>
  <p>This is a test HTML email sent using Google Mail.</p>
  <p><a href="https://www.example.com">Visit our website</a></p>
  <table border="1" cellpadding="10" cellspacing="0">
    <tr>
      <td>Cell 1</td>
      <td>Cell 2</td>
    </tr>
    <tr>
      <td>Cell 3</td>
      <td>Cell 4</td>
    </tr>
  </table>
</body>
</html>

How to send the email:

  1. Log in to your Google Mail account.
  2. Click on the "Compose" button to start a new email.
  3. In the "To" field, enter the email address you want to send the email to.
  4. In the "Subject" field, enter the subject of the email (e.g. "Test HTML Email").
  5. In the "Body" field, paste the HTML code above.
  6. Click on the "Send" button to send the email.

Tips: