Seguinte. To tentando fazer um sistema de envio de email mas somente os emails do hotmail não funcionam. ja testei de 2 formas e sem sucesso veja abaixo
não vai nem pro lixo eletrônico
1 tentaiva
$msg 'teste';
$para = '[email removido]';
$assunto = 'Esqueceu sua senha? ';
$header = "MIME-Version: 1.0\r\n";
$header .= "Content-type: multipart/mixed; charset=iso-8859-15\r\n";
$header .= "Message-ID: <".md5(uniqid(time()))."@{$_SERVER['SERVER_NAME']}>\r\n";
$header .= "X-Priority: 3 (Normal)\r\n";
$header .= "X-MSMail-Priority: Normal\r\n";
$header .= "X-Mailer: Microsoft Office Outlook, Build Build 10.0.2627\r\n";
$header .= "X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2670\r\n";
$header .= "X-MS-TNEF-Correlator: 000000001FAFEF0164F948428AF85FFB8E5FA93BE4422D00\r\n";
$header .= "X-Antivirus: avast! (VPS 0608-0, 20/02/2006), Inbound message\r\n";
$header .= "X-Antivirus-Status: Clean\r\n";
$header .= "From: [email removido]\r\n";
$Email=mail($row['email'],$assunto,$msn,$header);
segunda tentativa
$msn = "teste";
$para = '[email removido]';
$assunto = 'Qual sua opnião sobre o sistema';
$headers = "From: [email removido] \n";
$headers .= "Content-Type: text/html; charset=\"ISO-8859-1\"\n\n";
mail($row['email'], $assunto, $msn, $headers);