What is the best PHP pop3 email to mysql class? #pop3 email to mysql
Edit
by mohamedshola - 5 years ago (2020-01-06)
Read mailbox and insert ticket in MySQL database
| I want to read a mailbox using the POP3 protocol and insert the ticket in MySQL and reply to the messages. |
Ask clarification
1 Recommendation
POP3 e-mail client: Access to e-mail mailboxes using the POP3 protocol
The class implements access to mailboxes using the POP3 protocol.
It features:
- Support secure connections using TLS
- Provides a stream wrapper class to access messages like files using fopen('pop3://user:pass@localhost/1', 'r');
- POP3 server access using standard and APOP login methods
- Authentication mechanisms implemented by SASL client classes like PLAIN, LOGIN, CRAM-MD5, NTLM (Windows or Linux/Unix via Samba), XOAUTH2, etc...
- Determining mailbox statistics (mailbox size in bytes and the number of stored messages)
- Listing of individual message sizes and identifier numbers
- Retrieving messages in data blocks of limited size to not exceed the available memory
- Retrieving messages all at once, separating the headers from the body, and limiting the number of message lines that it may retrieve at once
- Marking messages to be deleted
- Resetting the list of messages to be deleted
- Issuing of protocol NOOP command to avoid connection shutdown while in an idle state
| by Manuel Lemos package author 26695 - 5 years ago (2020-02-15) Comment
There is this POP3 client class can be used to pull the messages. You may combine it with other ticket systems that use a MySQL database to store the messages like this one:
https://www.phpclasses.org/package/9940-PHP-CRM-Ticketing-system-and-employee-manangement.html |