Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to parase some emails (gmail) using imap_search . So far I have this

$hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
$imap = imap_open($hostname,$from_email_contact, $password) or die(imap_last_error());

$messages = imap_search($imap,  'FROM "'.$from.'"');

echo "there are ".count($messages)."messages";
print_r($messages);
exit();

The count returns 1 but when I print the $messages I get absolutely nothing . Is there any way to debug the imap_search ? It's really frustrating because it works on some emails and some others doesn't work .

share|improve this question
does that entry actually exists in your web mail?? sometime i have found stale entries also on some IMAP servers. – Ansh Feb 21 at 4:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.