This class implements a POP3 stream handler that can be used to access messages in mailboxes using POP3 (or secure POP3, as of v1.2) as if they were regular files.
It accesses a given POP3 mailbox using the PHP IMAP extension authenticating as an user with password specified in the URL passed to the PHP fopen function.
The class can read individual message headers and body in a single stream when the PHP fread function is called.
It can also list all the messages in the mailbox when the PHP readdir function is called.
The class can retrieve details of a message using the PHP function stat or delete a message with the PHP unlink function. |