我想知道如何从gmail帐户中获取未读电子邮件。我有一个gmail帐户,我希望所有来自gmail帐户的未读电子邮件都通过php进入我的网站。我一直在实施各种代码,但他们没有帮助我。请帮我解决这个问题。
我有一个代码用于从gmail中获取邮件,但邮件没有被提取。
<?php
/* connect to gmail */
$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$username = 'abc@gmail.com';
echo $password = 'abcd';
/* try to connect */
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
echo "got inbox";
/* grab emails */
$emails = imap_search($inbox);
/* if emails are returned, cycle through each... */
if($emails) {
echo "got 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>';
break;
}
echo $output;
}
/* close the connection */
imap_close($inbox);
?>
答案 0 :(得分:2)
用于获取未读消息:
$inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
$unread_msgs = imap_search($inbox, 'UNSEEN');
您可以参考相应的manual以及其他选项。
答案 1 :(得分:1)
使用imap_open
:
$inbox = imap_open("{imap.gmail.com:993/imap/ssl}INBOX",$username,$password);
查看示例here。