How to send html mail from outlook

To send an HTML email from Outlook, you can follow these steps:

Method 1: Using the Outlook Web App

  1. Log in to your Outlook account using the web app.
  2. Compose a new email by clicking on the "New Email" button.
  3. In the "Compose" window, click on the "Format Text" button in the toolbar.
  4. Select "HTML" from the dropdown menu.
  5. Write your email content using HTML code. You can use a code editor or a WYSIWYG editor like TinyMCE to create your HTML content.
  6. Click on the "Send" button to send the email.

Method 2: Using Outlook Desktop Client

  1. Open Outlook on your desktop.
  2. Compose a new email by clicking on the "New Email" button.
  3. In the "Compose" window, click on the "Format Text" button in the toolbar.
  4. Select "HTML" from the dropdown menu.
  5. Write your email content using HTML code. You can use a code editor or a WYSIWYG editor like TinyMCE to create your HTML content.
  6. Click on the "Send" button to send the email.

Tips and Tricks

Example HTML Code

Here is an example of a simple HTML email:

<html>
  <head>
    <title>My HTML Email</title>
  </head>
  <body>
    <h1>Welcome to my HTML email!</h1>
    <p>This is a sample HTML email.</p>
    <img src="https://example.com/image.jpg" alt="An image in my email">
  </body>
</html>

This code creates a basic HTML email with a heading, paragraph, and image. You can customize this code to create more complex HTML emails with tables, forms, and other elements.