Fetch
Fetch copied to clipboard
getMessages() should allow pagination, not only limit
If you want to fetch every messages from your mailbox, if there are thousand of emails, this method call litterally explodes PHP memory. We should be able to divide in mutliple batch processes :
getMessages($limit = 0, $page = 1)
or
getMessages($start= 0, $end = 10)