HTML Email In Web Client

Hi All

I have forms on my website the email me and my clients in HTML. They need to stay HTML and not be plain text.

If we check the email in Outlook etc it works perfectly fine.

We use Horde as a web based client and when we try to open the emails in that you can only see the HTML.

Is there a way to make the email work in Horde and any other web based client?

Thanks for your help.

mrmbarnes

What are the current headers your using for the email? Is the Content-type set to text/html?

Currently I am using:

$headers = "From: email@domain.com\r
";
$headers .= "Bcc: email@anotherdomain.com\r
";
$headers .= "Content-type: text/html; charset=iso-8859-1\r
";

Any ideas?

I have done a little bit of reading around and it looks like you need access to the horde folder to change the inline configuration value which allows HTML to be displayed as HTML rather then plain text.

Thanks for the discussion. It really helps out me.

Thanks.