Posts by Roberto • 11 points
1 post
-
1
votes1
answer628
viewsQ: Phpmailer works with Gmail but not with Hotmail/Live
I have the following code: <?php require'PHPMailerAutoload.php'; $mail = new PHPMailer(); $mail->IsSMTP(); $mail->Port = '465'; $mail->Host = 'smtp.gmail.com'; $mail->IsHTML(true);…