1

以下代码不起作用。我收到此错误:500 - Internal server error :: Warning: imap_open() [function.imap-open]: Couldn't open stream {imap.gmail.com:993/imap/ssl}INBOX

这是代码:

$hostname = 'xxxx';
$username = 'xxxx';
$password = 'xxxx';

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

$emails = imap_search($inbox,'ALL');
if($emails) 
{
    $output = '';
    rsort($emails);
    foreach($emails as $email_number) 
    {
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $message = imap_fetchbody($inbox,$email_number,2);

        $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.= '<div class="body">'.$message.'</div>';
    }
    echo $output;
} 

imap_close($inbox);
4

1 回答 1

0

我刚刚测试并能够得到那个确切的错误。为了解决它,我这样做了:

1) 在 Google 中打开 IMAP 2) 输入正确的登录凭据。

我相信它是由不正确的登录凭据触发的。此外,您似乎不能在用户名前面使用“recent:”之类的前缀。

于 2013-05-03T02:14:21.693 回答