首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >SMTP PHPMailer不工作

SMTP PHPMailer不工作
EN

Stack Overflow用户
提问于 2013-09-24 05:00:28
回答 1查看 2.3K关注 0票数 0

我试图像this一样使用谷歌作为SMTP服务器,但它不能发送邮件。怎么修呢?似乎有防火墙阻止了我的脚本。

代码语言:javascript
复制
<?php
    require("PHPMailer_5.2.4/class.phpmailer.php");

    $mail = new PHPMailer();
    $mail->SMTPDebug = true;
    $mail->IsSMTP();  // telling the class to use SMTP
    $mail->SMTPAuth   = true; // SMTP authentication
    $mail->Host       = "smtp.gmail.com"; // SMTP server
    $mail->Port       = 465; // SMTP Port
    $mail->Username   = "emerald.hieu.test@gmail.com"; // SMTP account username
    $mail->Password   = "xxx";        // SMTP account password

    $mail->SetFrom('emerald.hieu.test@gmail.com', 'Hieutot'); // FROM
    $mail->AddReplyTo('emerald.hieu.test@gmail.com', 'Hieutot'); // Reply TO

    $mail->AddAddress('nguyen.hieu@xxx.vn', 'HieuND2'); // recipient email

    $mail->Subject    = "First SMTP Message"; // email subject
    $mail->Body       = "Hi! \n\n This is my first e-mail sent through Google SMTP using PHPMailer.";

    if(!$mail->Send()) {
      echo 'Message was not sent.';
      echo 'Mailer error: ' . $mail->ErrorInfo;
    } else {
      echo 'Message has been sent.';
    }

这是我的日志:

代码语言:javascript
复制
SMTP -> get_lines(): $data was "" 
SMTP -> get_lines(): $str is "" 
SMTP -> get_lines(): $data is "" 
SMTP -> get_lines(): timed-out (10 seconds) 
SMTP -> FROM SERVER: 
SMTP -> get_lines(): $data was "" 
SMTP -> get_lines(): $str is "" 
SMTP -> get_lines(): $data is "" 
SMTP -> FROM SERVER: 
SMTP -> ERROR: EHLO not accepted from server: 
SMTP -> FROM SERVER: 
SMTP -> ERROR: HELO not accepted from server: 
SMTP -> ERROR: AUTH not accepted from server: 
SMTP -> NOTICE: EOF caught while checking if connectedThe following From address failed: emerald.hieu.test@gmail.com : Called Mail() without being connected Message was not sent.Mailer error: The following From address failed: emerald.hieu.test@gmail.com : Called Mail() without being connected
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2013-09-24 08:44:25

试着使用:

代码语言:javascript
复制
$mail->Host = "ssl://smtp.gmail.com";

代替:

代码语言:javascript
复制
$mail->Host = "smtp.gmail.com";
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/18973244

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档