imap
imap copied to clipboard
Object-oriented, fully tested PHP IMAP library
I ave a script that is iterating over a message list and doing something like this to a message in Gmail: ``` $message->markAsSeen(); $message->move($this->mailboxes['[Gmail]/All Mail']); echo 'Moving "' . $message->getSubject()...
I am performing a search in a top level directory /Tests. This is verified before I perform the search: `{xxx-xxx.ms-acdc.office.com:993/imap/notls/ssl/user="[email protected]"}Tests` But mail results are being returned from outside this directory,...
Could you tell me this module work perfectly with php7.0 or not
I'm using this to get sent mails, `$mailbox = $connection->getMailbox('Sent');` But this is giving this error, `Ddeboer\Imap\Exception\MailboxDoesNotExistException: Mailbox name "Sent" does not exist` I'm using Gmail here. But there is...
Is there a place for "write" methods on messages in this library? I want to alter e-mails stored on an IMAP server (id. remove some attachments, keeping the e-mail in...
Hello, We have configured the module to connect to our mailbox server. Below is the code we use to connect: ```php use Ddeboer\Imap\Server; $flags = '/imap/notls/novalidate-cert'; $server = new Server('url','143',$flags);...
Hello, I want to know if it is possible to change the header from the mail? I want to add something like this: ``` X-Rspamd-Queue-Id: 679E95324C ``` Thank you
is it possible to save without "manipolation" a file ".msg" attached!? or export an embedded message to disk?
Hi, in `Ddeboer\Imap\Mailbox::getMessageSequence` if any error happens you throw an InvalidSearchCriteriaException with "invalid sequence [...]" message. The error you receive is not always this. You have `imap_last_error`, you could return...
Is it possible to use Your library as parser of eml files? Now I'm using https://github.com/php-mime-mail-parser/php-mime-mail-parser But it would be great to use only one library.