PHPMailer Lite& GMAIL SMTP:电子邮件未发送到Yahoo Mail,如何调试?

时间:2010-12-15 02:32:05

标签: php debugging smtp gmail phpmailer

我正在尝试使用phpMailer和GMail SMTP发送电子邮件。它可以很好地发送电子邮件到其他Gmail帐户,但发送到雅虎的邮件永远不会到达那里。我读过有关使用ip地址等进行调试的内容,但我不熟悉那个领域?

这是代码:

  $mail->Mailer='smtp';

   try {
    $mail->SMTPAuth   = true;                  // enable SMTP authentication
    $mail->SMTPSecure = "tls";                 // sets the prefix to the servier
    $mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
    $mail->Port       = 587;                   // set the SMTP port for the GMAIL server
    $mail->Username   = "__email__";  // GMAIL username
    $mail->Password   = "__pass__";            // GMAIL password
    $mail->SMTPDebug  = 2;

    $a = md5(uniqid(rand(), true)); //create a unique validation code

    //These are the variables for the email

    $mail->AddAddress (trim($_POST['email']),trim($_POST['username'])); // this is the email address collected form the form
    $mail->Subject = "Registration"; // Subject
    $mail->Body = "Thank you for registering\n your security code is ".$a;
    $mail->Send();


    echo "check your email to complete registration"; 
   } catch (phpmailerException $e) {
     echo $e->errorMessage(); //Pretty error messages from PHPMailer
   } catch (Exception $e) {
     echo $e->getMessage(); //Boring error messages from anything else!
   }

   $mail->ClearAddresses();

更新:发现问题:我们的服务器已被雅虎列入黑名单(不是我的错) 所以这是浪费了一天半。

2 个答案:

答案 0 :(得分:0)

由于它与Gmail用户合作,我的访客将是某些phpMailer没有正确发送您的用户名和密码。如果您未经过身份验证,gmail服务器将不接受中继电子邮件。

有一个问题,为什么不使用自己的电子邮件服务器,这将有助于调试并知道为什么不发送电子邮件。

答案 1 :(得分:0)

我会建议你使用Google App Engine's email service而不是gmail。它为你做了所有繁重的工作。此外,因为gmail有一个发送限制,而app引擎的更高。它还有一个慷慨的免费配额(每天1000个接收者。

以下是从当前登录用户发送邮件的示例,如果用户未登录,则使用login_required注释将用户重定向到登录页面:

from google.appengine.api import mail
from google.appengine.api import users
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import login_required

class InviteFriendHandler(webapp.RequestHandler):
    @login_required
    def post(self):
        to_addr = self.request.get("friend_email")
        if not mail.is_email_valid(to_addr):
            # Return an error message...
            pass

        message = mail.EmailMessage()
        message.sender = users.get_current_user().email()
        message.to = to_addr
        message.body = """
I've invited you to Example.com!

To accept this invitation, click the following link,
or copy and paste the URL into your browser's address
bar:

%s
        """ % generate_invite_link(to_addr)

        message.send()