Don't know for sure but from googling on the subject, I'd try:
Code:
$headers = 'From: ' . strip_tags($_POST['Name']) .''."\r";
$headers .= "Content-Type: text/html; charset=ISO-8859-1\r";
$headers .= "MIME-Version: 1.0\r";
To be clear, you probably need that in the header, but it shouldn't appear in the email body when the message is viewed in the normal manner in an email program. When viewing the headers in an email program or via any other method it should look like so:
MIME-Version: 1.0
If you're absolutely sure you don't need it, just skip that line.
Bookmarks