Is it possible to render HTML in gmail

gmail, html, html-email

Solution

You cannot send HTML images in Google's gmail web interface; this interface converts al HTML tags to the human readable variant, so they get isplayed as-is on the other side.

Your alternative is to set up an SMTP server (they usually come with your ISP) and send e-mails from there. You can set the 'from' field yourself, so you can change that to your gmail account. The disadvantage is that your mail will likely be caught in spamfilters.

Good luck!

Problem

If I send this message ``` <h5>Hello</h5> <h3 style="color:pink">GOODBYE</h3> ``` It appears as it is. Is there any way to render the same message as HTML at receivers end? update : what i want on receivers side is : Hello (style corresponding to the h5 tag) GOODBYE (style corresponding to the h3 tag & in pink color)

Original source