IMAP不适用于PHP

时间:2012-08-20 12:41:16

标签: php imap

以下代码无效。我收到此错误: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);

1 个答案:

答案 0 :(得分:0)

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

1)在Google中启用了IMAP 2)输入正确的登录凭据。

我认为它是由不正确的登录凭据触发的。此外,您似乎无法在用户名前面使用“recent:”等前缀。