This is the headers from my mail script.
[php]
$headers = ‘From: MGV [email protected]’."\r\n";
$headers .= ‘Reply-To: MGV [email protected]’."\r\n";
$headers .= ‘MIME-Version: 1.0’."\r\n";
$headers .= ‘Content-type: text/html; charset=UTF-8;’."\r\n";
$headers .= ‘Content-Transfer-Encoding: 8bit;’."\r\n";
[/php]
This is what I get in Outlook as plain text.
Content-type: text/html; charset=UTF-8;
Content-Transfer-Encoding: 8bit;
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<title></title>
<meta charset="utf-8" />
</head>
...
Does anyone know what I am doing wrong, I have run into this issue before and never quite figured it out.