php-imap
php-imap copied to clipboard
PHP-IMAP is a wrapper for common IMAP communication without the need to have the php-imap module installed / enabled. The protocol is completely integrated and therefore supports IMAP IDLE operation a...
If the email is sent using the SRS mechanism, it is not possible to read the sender directly. See: https://en.wikipedia.org/wiki/Sender_Rewriting_Scheme In the case of such an email, the message headers...
the proxy option is not working. It total ignores the proxy and makes a direct request anyway: $client = $cm->make([ 'host' => 'imap.somehost.com', 'port' => 993, 'encryption' => 'ssl', 'validate_cert'...
Hi! I'm trying to move a bunch of messages from a GMail account to a custom folder and I'm always getting an exception after 2nd or 3rd message moved. PHP...
Our company is currently automatically fetching our inbox messages using: `$inboxMessages = $this->inboxFolder->messages()->all()->get();` Occassionaly, we get a bad message in there with an invalid message date, which throws an error...
Move message fails silently. ``` $messagge->move('INBOX.Trash'); // fails silently. ``` Here is the why: move method at https://github.com/Webklex/php-imap/blob/master/src/Message.php#L901 does ``` $status = $this->client->getConnection()->examineFolder($folder_path); if (isset($status["uidnext"])) { ``` but, "uidnext" does...
I have implemented this library because I have a command that connects every 15 minutes to the gmail and outlook emails capturing and extracting the emails and registering it in...
**Describe the bug** It does not return the full subject, subject: - 800160124;TRANSPORTES ORO S.A.S;SETP990002156;01;TRANSPORTES ORO S.A.S **Used config** Default **Code to Reproduce** The troubling code section which produces the...
**Describe the bug** When I foreach return from getAttachments() and list it I recognize that some attachments are listed two times. I recognize it by parameter "part_number" **Code to Reproduce**...
**Describe the bug** stream_context_create ssl context have no proxy option, so proxy doesn't working. **Used config** **Code to Reproduce** ``` $client = $cm->make([ 'host' => 'imap.somehost.com', 'port' => 993, 'encryption'...