Buenas tardes: Tengo un lio grande, tengo que conectar una cuenta webmail con php y estoy utilizando phpmailer y me sale el siguiente error:
SMTP -> FROM SERVER:553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
SMTP -> ERROR: RCPT not accepted from server: 553 sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
SMTP Error: The following recipients failed: ***@outlook.com Mailer Error: SMTP Error: The following recipients failed: ***@outlook.com
SMTP server error: sorry, that domain isn't in my list of allowed rcpthosts (#5.7.1)
Supuestamente se debe de enviar a todo tipo de cuentas y le intente con una cuenta en outlook, pero me sale ese error y tengo esta configuracion:
require_once('PHPMailer_5.2.4/class.phpmailer.php');
//include("class.smtp.php");
$mail = new PHPMailer();
//$mail->Mailer = "sendmail";
$mail->Mailer = "smtp";
$mail->From = "*******"; // Mail de origen
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "*******"; // SMTP server
$mail->SMTPDebug = 2; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->Port = 333;
$mail->IsHTML(true);
$mail->SMTPAuth = false;
$mail->SMTPAuth = true; // usaremos autenticacion
$mail->Username = "*****"; // usuario
$mail->Password = "******"; // contraseña
$mail->AddAddress(****);
$mail->Priority = 1;
Mas el contenido que lleva dentro del mail y revise en una de las maquinas que tienen configurado con outlook, lo tienen muy facil solo con el host, el puerto, sin autentificacion y ya, pero en php me esta dando problemas, espero que alguien me pueda ayudar.