PHPMailer error: SMTP -> ERROR: Failed to connect to server

I believe port 25 is blocked on smtp.live.com. I cannot connect to smtp.live.com:25 from here either. Try using port 587 instead, with TLS. So, it would be:

$mail->Port = 587;
$mail->SMTPSecure="tls";   

Leave a Comment