Reisol
Reisol

Reputation: 11

How to send HTML Emails in Outlook.com

I need help creating an HTML Email in Outlook.com. I looked in the settings and didn't see any information for this. I also searched online and in other Stackoverflow questions but couldn't really find the answer. My email is pretty simple, but each time to send it, all I see is the HTML code.

<html>
  <body style="background-color:#f7f6f2; color:#555; margin:0;">
    <table style="width:100%;">
      <tr style="background-color:#f8f5e4;">
        <td style="border-bottom: 1px solid #ccc">
          <img src="absolute_path_to_my_image_here" alt="Email Logo" style="padding:10px 10px 10px 3px;">
        </td>
      </tr>
      <tr>
        <td style="padding-right:10px; padding-left:10px;">
          <p style="padding-top:10px; padding-bottom:10px;">Hello <span style="color:#5e9773;">NAME</span>,</p>
          <p>Content</p>
          <p><a href="my_url">Click here</a></p>
          <p>Content</p>
          <p style="padding-top:10px; padding-bottom:10px;">Sincerely</p>
          <p>NAME</p>
        </td>
      </tr>
    </table>
  </body>
</html>

Upvotes: 1

Views: 10727

Answers (1)

KKW
KKW

Reputation: 385

I have tried on Outlook 365 web + windows, and this worked for me.

  1. Open html file in a browser
  2. ctrl + a or copy all content (not the code, but the rendered HTML in browser)
  3. ctrl + v or paste on the email new message body

Upvotes: 0

Related Questions