我的phpMailer无法正常工作

时间:2016-05-02 16:43:28

标签: php phpmailer

我的phpmailer在执行mailtest.php

时产生以下结果

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

我在这个论坛上经历了很多关于phpmailer的问题,但没有一个让我受益。

我的mailtest.php

     <?php
       require ("/phpmailer/PHPMailerAutoload.php");
       require ("/phpmailer/class.phpmailer.php");

       $mail = new PHPMailer;

       //$mail->SMTPDebug = 3;                               // Enable verbose debug output

       $mail->isSMTP();                                      // Set mailer to use SMTP
       $mail->Host = 'smtp.gmail.com';  // Specify main and backup SMTP servers
       $mail->SMTPAuth = true;                               // Enable SMTP authentication
       $mail->Username = 'thethih@gmail.com';                 // SMTP username
       $mail->Password = 'password.';                           // SMTP password
       $mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
       $mail->Port = 587;                                    // TCP port to connect to

       $mail->setFrom('from@example.com', 'Mailer');
       $mail->addAddress('thethih@gmail.com', 'Joe User');     // Add a recipient
       $mail->addAddress('thethih@yahoo.com');               // Name is optional
       $mail->addReplyTo('info@example.com', 'Information');
       $mail->addCC('cc@example.com');
       $mail->addBCC('bcc@example.com');


       $mail->isHTML(true);                                  // Set email format to HTML

       $mail->Subject = 'Here is the subject';
       $mail->Body    = 'This is the HTML message body <b>in bold!</b>';
       $mail->AltBody = 'This is the body in plain text for non-HTML mail clients';

       if(!$mail->send()) {
         echo 'Message could not be sent.';
        echo 'Mailer Error: ' . $mail->ErrorInfo;
        } else {
        echo 'Message has been sent';
        }

     ?>

任何帮助将不胜感激..它在localhost。

1 个答案:

答案 0 :(得分:1)

在GitHub上,PHPMailer说&#34;与PHP 5.0及更高版本兼容&#34;,但情况可能并非如此。

尝试将您的PHP版本更改为5.5并查看是否可以解决问题。您可以通过转到控制面板并单击PHP Configuration来更改您的PHP版本。