I'm working on IMAP reading email from mine google account, and can't find a way to check is email with exact number exists or why this errors happens.
Here is my code, so basically I make an connection than search all email go get list of them which are from specific sender list, and then run process function
$mail_conn = imap_open($this->hostname, $this->username, $this->password);
...
$emails = imap_search($mail_conn, 'FROM ' . $sender, SE_UID);
$results = $this->process($mail_conn, $emails);
Process function looks like this
....
foreach ($emails as $email_number)
{
$email_structure = imap_fetchstructure($mail_conn, $email_number, FT_UID);
.....
I tried to remove FT_UID but same error persists. What could be your suggestion what to do?
What I get when I debug is:
In emails imap_search returns
[emails] => Array
(
[0] => 513384
[1] => 513501
[2] => 514079
)
I start process this id
[email_number] => 513384
after that error occurs.
$emails? If you search withSE_UIDyou can fetch by UID withimap_fetchstructureand theFT_UIDoption. Otherwise you need to provide the message number. But in any case, $email_number is wrong, hence the error. Put the code next to each other so you're sure you're operating on the same connection etc.. – hakre Jul 22 '11 at 15:41