Hello,
I hope somebody can help me.
I'm reading emails with PHP by using imap_open.
Now, there have been more than 30 emails in the account and it doesn't work anymore.
Is there known any problem with imap_open?
here's my code:
$mbox = imap_open ("{mailserver}INBOX", "account", "password");
$header = imap_headerinfo($mbox,$msgn,80,80);
...
imap_close;
It really works well with only few emails, but I think the problem occurs if more than 30 emails are in the inbox.
Does anybody know a solution?
Thanks for your help.
Dany