laravel-imap
laravel-imap copied to clipboard
Laravel IMAP is an easy way to integrate both the native php-imap module and an extended custom imap protocol into your Laravel app.
**Describe the bug** I am just trying to fetch a couple of mails in the inbox folder with: ```php $folder = $client->getFolder("INBOX"); $messages = $folder->messages()->all()->get(); ``` This results into ```...
Hello, I see you have published updates on php-imap. Can you update laravel-imap dependencies and publish a new tag please ? Thanks for all the work
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
I am not able to fetch threads of emails in laravel-imap library, I am using laravel 5.8
Description: When trying to use the EXPUNGE command after creating folders with the IMAP server, we receive the following error: BAD [ALERT] i. EXPUNGE not allowed in session state The...
I'm unsure if it's a bug or user error but I'm trying to retrieve unseen messages, read their subject, post them to discord and mark them as seen in a...
**Describe the bug** this is my connection `$client = $this->clientManager->make([ 'host' => $imap->host, 'port' => 995, 'encryption' => $imap->encryption, 'validate_cert' => true, 'username' => $imap->username, 'password' => decrypt($imap->password), 'protocol' =>...
**Describe the bug** When i use `$mail->getTextBody()`, i have 4 times the content : if in my mail i have just `hello There\n` i the function will return `hello There\nhello...
**Describe the bug** When I want to get new messages from gmail is not working, I am using from example laravel integration. **To Reproduce** `
Currently, I am using the following approach to search for unread emails in my inbox, and then move them to another folder once they are read. ```php $messages = $folder->messages()->...