0

我想知道如何从 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);
?>
4

2 回答 2

2

要获取未读消息,请执行以下操作:

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

您也可以参考相应的手册了解其他选项。

于 2012-10-31T11:08:09.163 回答
1

使用imap_open

$inbox = imap_open("{imap.gmail.com:993/imap/ssl}INBOX",$username,$password);

请参阅此处的示例。

于 2012-10-31T10:58:08.913 回答