PHPmailer:SMTP connect()失败(无法正常工作)

时间:2015-11-19 13:40:37

标签: email smtp xampp phpmailer

我想使用来自localhost XAMPP的phpmailer使用SMTP服务器(gmail)发送邮件。但我一直收到这个错误:

无法发送消息.Mailer错误:SMTP connect()失败。 https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

我尝试了很多关于在php.ini文件中取消注释openSSL的解决方案,更改了端口465(&#34; ssl&#34;)和587(&#34; tls&#34;),但它不起作用。< / p>

我的代码:

visibleCells

1 个答案:

答案 0 :(得分:0)

您需要class.phpmailer.php。如果您使用的是SMTP,则需要class.smtp.php。 试试这个演示代码:

<?php
      require 'class.phpmailer.php';
            require 'class.smtp.php';
    //SMTP needs accurate times, and the PHP time zone MUST be set
    //This should be done in your php.ini, but this is how to do it if you don't have access to that
    #require '../PHPMailerAutoload.php';
    //Create a new PHPMailer instance
    $mail = new PHPMailer;
    //Tell PHPMailer to use SMTP
    $mail->isSMTP();
    //Enable SMTP debugging
    // 0 = off (for production use)
    // 1 = client messages
    // 2 = client and server messages
    $mail->SMTPDebug = 0;
    //Ask for HTML-friendly debug output
    $mail->Debugoutput = 'html';
    //Set the hostname of the mail server
    $mail->Host = 'mail.domain.com';
    // use
    // $mail->Host = gethostbyname('smtp.gmail.com');
    // if your network does not support SMTP over IPv6
    //Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
    $mail->Port = 25;
    //Set the encryption system to use - ssl (deprecated) or tls
    //$mail->SMTPSecure = 'tls';
    //Whether to use SMTP authentication
    $mail->SMTPAuth = true;
    //Username to use for SMTP authentication - use full email address for gmail
    $mail->Username = "demo@domain.com";
    //Password to use for SMTP authentication
    $mail->Password = "password";
    //Set who the message is to be sent from
    $mail->setFrom('demo@domain.com', 'subillion');
    //Set an alternative reply-to address
    #$mail->addReplyTo('replyto@example.com', 'First Last');
    //Set who the message is to be sent to
    $mail->addAddress("example@gmail.com");

    //Set the subject line
    $mail->Subject = 'Demo !!';
    //Read an HTML message body from an external file, convert referenced images to embedded,
    $mail->isHTML(true);

    $msgbody = "This is a demo test !";
    $mail->Body = $msgbody;
    //send the message, check for errors
    if (!$mail->send()) {
    // echo "Mailer Error: " . $mail->ErrorInfo;
    } else {
        echo "Message sent!";
    }
?>