I'm trying to use PHP to send a HTML form to an employee list. I can send the email, but the HTML is not rendering. What do I have to do to get the email clients to render the html. My company is mostly using Outlook Express 5.0
Thanks for your help.
Bryan
I think there is a tutorial about this on the phpbuilder website. Sending MIME email. Check out the columns on the site.
add this header to the mail() function Content-Type: text/html; charset=iso-8859-1
and you'll be all set.
OK add the line Content-Type: text/html; charset=iso-8859-1 but down do you add the HTML for the email? Cheers
Basket
OK add the line Content-Type: text/html; charset=iso-8859-1 but down do you add the HTML for the email?
Do you mean 'how' do you add the HTML?
Once the content type is set, just put markup in the body of the message:
<BODY> etc...