Bueno.. estoy intentando enviar un email con phpmailer y gmail y al momento de enviarlo en hotmail llega a la bandeja de spam "junk". Por el contrario en gmail a la bandeja de entrada.
Esta es la configuracion :
Código PHP:
$this->OBJmailer->IsSMTP();
$this->OBJmailer->SMTPAuth = true;
$this->OBJmailer->SMTPSecure = "ssl";
$this->OBJmailer->Host = "smtp.gmail.com";
$this->OBJmailer->Port = 465;
$this->OBJmailer->Username = "mi_cuenta_gmail";
$this->OBJmailer->Password = "mi_pass_cuenta_gmail";
$this->OBJmailer->From = "email_pagina";
$this->OBJmailer->FromName = "Nombre_pagina";
$this->OBJmailer->Subject = "uusando gmail";
$this->OBJmailer->AltBody = "usando gmail alternativo";
$this->OBJmailer->MsgHTML("Hola!!!<hr/>chao");
$this->OBJmailer->AddAddress("email_destinatario");
$this->OBJmailer->IsHTML(true);
Lei por ahi que hotmail tiene algunas restricciones, pero no encuentro documentación ..
Perdonen la molestia.
PD: es solo en hotmail donde llega a la bandeja de spam.