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 .