phpmailer and gmail SMTP ERROR: Failed to connect to server: Network is unreachable (101) SMTP connect() failed

前端 未结 4 2084
天命终不由人
天命终不由人 2020-12-03 19:39

I need help please this is my code:

require \'PHPMailerAutoload.php\';
$mail = new PHPMailer;
$mail->isSMTP();
$mail->Host = \"smtp.gmail.com\";
$mail-         


        
4条回答
  •  生来不讨喜
    2020-12-03 20:21

    This worked for me:

    change:

      $mail->SMTPSecure = 'ssl';
      $mail->Host = 'smtp.gmail.com';
      $mail->Port = '465';
    

    to

      $mail->SMTPSecure = 'tls';
      $mail->Host = 'smtp.gmail.com';
      $mail->Port = '587';
    

提交回复
热议问题