Sto utilizzando la classe phpmailer per inviare e-mail. Attualmente gmail e yahoo non contrassegnano le e-mail come spam, ma l'hotmail lo fa sempre. Come posso evitare questo? Il mio codice è sottoPHPmailer invia posta a spam in hotmail. come risolvere?
require_once('../PHPMailer/class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$mail->IsSMTP(); // set mailer to use SMTP
$mail->Host = "mail.example.com"; // specify main and backup server
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "xxx"; // SMTP username -- CHANGE --
$mail->Password = "xxx"; // SMTP password -- CHANGE --
$mail->Port = "25"; // SMTP Port
$mail->From = "[email protected]"; //From Address -- CHANGE --
$mail->FromName = "xxx"; //From Name -- CHANGE --
$mail->AddAddress($email, $passerusername); //To Address -- CHANGE --
$mail->AddReplyTo("[email protected]", "xxx"); //Reply-To Address -- CHANGE --
$mail->WordWrap = 50; // set word wrap to 50 characters
$mail->IsHTML(false); // set email format to HTML
$mail->Subject = "AuthSMTP Test";
$mail->Body = "AuthSMTP Test Message!";
if(!$mail->Send())
{
echo "Message could not be sent. <p>";
echo "Mailer Error: " . $mail->ErrorInfo;
exit;
}
echo "Message has been sent";
Probabilmente cose come record SPF del server, DNS inverso e simili. (non troppo utile lo so, ma questo è il motivo per cui è un commento!) – jprofitt
anche se aiuta, io uso un server vps, non uno condiviso con hostgator – Anonymous
Si suppone che 'From' e' AddReplyTo' siano indirizzi diversi o è un errore? Se hai questo nel tuo codice reale, potrebbe causare il filtraggio della posta come spam. –