How does IMAP get message content to filter messages? Which ACE has done it? Excuse me.

Source: Internet
Author: User
Tags imap
How does IMAP get the message content to filter the mail?? Who did? consulted the
 
 
Require_once ('.. /imapmailbox.php ');

IMAP must is enabled in Google Mail Settings
Define (' Gmail_email ', ');
Define (' Gmail_password ', ');
Define (' Attachments_dir ', DirName (__file__). '/attachments ');

$mailbox = new Imapmailbox (' {xxxx/notls}inbox ', Gmail_email, Gmail_password, Attachments_dir, ' utf-8 ');
$mails = Array ();

foreach ($mailbox->searchmails (' all ') as $mailId) {
$mail = $mailbox->getmail ($mailId);
$mailbox->setmailasseen ($mail->mid);
$mailbox->deletemail ($mail->mid);
$mails [] = $mail;
}
echo "
";
Var_dump ($mails);



The key is here foreach ($mailbox->searchmails (' all ') as $mailId) {

This parameter all, can be replaced by other

Otherwise there are 100,000 letters in the mailbox, to find 100,000 times, and I just want to find the first 1 hours of


------Solution--------------------
Wow, I just came in and I got a knot, and I need someone to get a point.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.