PHP电子邮件到IMAP帐户

时间:2010-12-07 14:48:37

标签: php email imap phpmailer

我正在使用PHPmailer从网站向网站所有者发送电子邮件。它适用于某些地址(例如我的Gmail帐户),它曾经用于所有者的地址,但他最近从POP更改为IMAP,现在他没有收到来自网站的电子邮件。他确实收到了其他来源的电子邮件。这是代码:

    $mail = new PHPMailer(true);    

    try {  
          $mail->AddAddress($to, 'Example To');
          $mail->SetFrom('example@example.com', 'Example');
          $mail->AddReplyTo('example@example.com', 'Example');
          $mail->Subject = $subject;
          $mail->AltBody = 'To view the message, please use an HTML compatible email viewer!'; // optional - MsgHTML will create an alternate automatically
          $mail->MsgHTML($message);
          $mail->Send();
          //echo "Message Sent OK</p>\n";
        } catch (phpmailerException $e) {
          echo $e->errorMessage(); //Pretty error messages from PHPMailer
        } catch (Exception $e) {
          echo $e->getMessage(); //Boring error messages from anything else!
        }

任何建议都非常感谢。 谢谢! ģ

1 个答案:

答案 0 :(得分:1)

与PHP代码有没有IMAP协议负责以用户身份从服务器获取邮件(使用IMAP邮件保留在服务器上......您有一个开放的流很长时间......)。 那么:他切换到另一个电子邮件提供商了吗?也许是垃圾邮件。检查maillog! ; - )