无法连接到服务器:连接超时(110)SMTP connect()失败.邮件未发送.Mailer错误:SMTP Conne


Failed to connect to server: Connection timed out (110)SMTP Connect() failed. Message was not sent.Mailer error: SMTP Connect() failed

这是我的代码,但它仍然没有发送邮件。可能是什么问题?

require 'class.phpmailer.php';// path to the PHPMailer class
require 'class.smtp.php';
            $mail = new PHPMailer();  
            $mail->IsSMTP();  // telling the class to use SMTP
            $mail->Mailer = "smtp";
            $mail->Host="smtp.gmail.com";
            $mail->SMTPSecure='tls';
            $mail->Port =465;             
            $mail->SMTPAuth = true; // turn on SMTP authentication
            $mail->Username = "mymailgmail.com"; // SMTP username
            $mail->Password = "mypassword"; // SMTP password 
            $mail->SMTPDebug = 1;
            $mail->AddAddress("mymail@gmail.com","Title");
            $mail->SetFrom($visitor_email, $name);
            $mail->AddReplyTo($visitor_email,$name);
            $mail->Subject  = "Message from  Contact form";
            $mail->Body     = $user_message;
            $mail->WordWrap = 50;  
            if(!$mail->Send()) {
            echo 'Message was not sent.';
            echo 'Mailer error: ' . $mail->ErrorInfo;
            } else {
            echo 'Message has been sent.';
            }

//header('位置:谢谢.html');}

我以前也遇到过类似的问题。事实证明,连接是使用ipv6地址进行的。从网络接口中删除IPv6地址后,它运行良好。