Yo aun no consigo hacer llegar ningun e-mail a Hotmail, a traves de phpmailer
.
Le pueden hechar un vistazo a mi code??;
Código PHP:
$mail->PluginDir = "phpmailer/";
$mail = new PHPMailer();
$mail->IsHTML(true);
$mail->Mailer = "smtp";
$mail->Host = "mail.dmclothing.com.au"; // SMTP server
$mail->Port = 25;
$mail->Timeout = 60;
$mail->Helo = "www.dmclothing.com.au";
$mail->From = "[email protected]";
$mail->FromName = "D&M Clothing";
// Send to list
$mails = $_POST['mails'];
$mails = explode(";", $mails);
$num = count($mails);
for($c=0; $c < $num; $c++) {
$mail->AddAddress($mails[$c]);
echo "\n";
}
$mail->headers = 'MIME-Version: 1.0' . "\r\n";
$mail->headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$mail->Subject = "D&M Clothing Featured Products of the Month";
$mail->Body = $message;
$mail->WordWrap = 150;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent. <a href="mailer.php">Back</a><br />';
}
Ya probe intentando lo mas standar posible, hasta con HTML(false) pero nada. Sigue siendo rechazado y enviado a la lista de SPAM por Hotmail. =/
Por cierto los datos son entrados por un form.