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

前端 未结 4 2074
天命终不由人
天命终不由人 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:40

    change

    $mail->SMTPSecure = "tls";

    with

    $mail->SMTPSecure = 'ssl';

提交回复
热议问题