PHP gmail IMAP停止工作

时间:2014-10-15 12:53:24

标签: php gmail imap

几个月前我找到了一个从Gmail上抓取电子邮件的示例。一切正常,但突然(也许在周一)它停止了工作。当我执行这个脚本时 - 它只是冻结(无限加载)并且不会给屏幕带来任何错误。

上周一切都在运作,但突然间出现了问题。

PHP代码:

$hostname = '{imap.gmail.com:993/imap/ssl/novalidate-cert}INBOX';

/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gma$

/* grab emails */
$emails = imap_search($inbox,'UNSEEN');

foreach($emails as $email_number) { /* do smth */ }

也许有人在使用Gmail时会遇到同样的问题。 IMAP?

在Gmail中启用了IMAP。检查了两次。

我刚检查了apache日志,发现错误:“IMAP连接丢失”。这就是全部,没有关于错误的更多信息。

1 个答案:

答案 0 :(得分:0)

试试这个,它对我有用。

<?php
    /* connect to gmail */
 $hostname = '{imap.gmail.com:993/ssl/novalidate-cert}[Gmail]/All Mail';
    $username = 'hidden';
    $password = 'hidden';

    /* try to connect */
    $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());

    /* grab emails */
    $emails = imap_search($inbox,'ALL');

    /* if emails are returned, cycle through each... */
    if($emails) {

      /* begin output var */
      $output = '';

      /* put the newest emails on top */
      rsort($emails);

      /* for every email... */
      foreach($emails as $email_number) {

        /* get information specific to this email */
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);

        /* output the email header information */
        $output.= '<div class="toggler '.($overview[0]->seen ? 'read' : 'unread').'">';
        $output.= '<span class="subject">'.$overview[0]->subject.'</span> ';
        $output.= '<span class="from">'.$overview[0]->from.'</span>';
        $output.= '<span class="date">on '.$overview[0]->date.'</span>';
        $output.= '</div>';

        /* output the email body */
        $output.= '<div class="body">'.$message.'</div>';
      }

      echo $output;
    } 

    /* close the connection */
    imap_close($inbox);
    ?>