PHPMailer不在CentOS上工作

时间:2013-09-06 08:36:06

标签: php email yii centos

我使用PHP获得了一个联系我们页面。像所有联系我们一样,在有人点击发送后,它会向我的电子邮件发送警告。

问题是它不起作用。该脚本在我的localhost中完美运行,它不仅在服务器上有效,并且不会显示任何错误。

        $default_path = get_include_path();
        set_include_path(dirname(__FILE__)."/../");
        require_once("extensions/PHPMailer/class.phpmailer.php");
        set_include_path($default_path);
        $mail = new PHPMailer();
        $mail->IsSMTP(); // send via SMTP
        $mail->SMTPSecure="ssl";
        $mail->Host="smtp.gmail.com";
        $mail->SMTPDebug =0;
        $mail->Port=465;
        $mail->SMTPAuth = true; // turn on SMTP authentication

        $mail->Username = Yii::app()->params['sender_email']; // SMTP username
        $mail->Password = Yii::app()->params['sender_password']; // SMTP password
        $webmaster_email = Yii::app()->params['webmaster_email']; //Reply to this email ID
        $mail->From = $email_address;
        $mail->FromName = "Webmaster";
        $mail->AddAddress($email_address,"");
        $mail->AddReplyTo($webmaster_email,"Webmaster");
        $mail->WordWrap = 70; // set word wrap
        //$mail->AddAttachment("/var/tmp/file.tar.gz"); // attachment
        //$mail->AddAttachment("/tmp/image.jpg", "new.jpg"); // attachment
        $mail->IsHTML(true); // send as HTML
        $mail->Subject = $mailcontent->subject;
        $mail->Body = $mailcontent->body;
        //$mail->AltBody = "This is the body when user views in plain text format"; //Text Body
        $mail->Send();

我认为这是因为服务器配置错误(这是我第一次设置服务器),但我不知道我做错了什么。

防火墙已经设置为允许每个流量,所以这不是防火墙问题。

没有错误,没有结果让我很困惑。

1 个答案:

答案 0 :(得分:0)

好的,在我检查了所有内容之后,由于可疑活动,谷歌阻止了我从服务器访问电子邮件。

要取消屏蔽,您需要访问此页面:https://accounts.google.com/DisplayUnlockCaptcha

然后再次运行脚本。