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.
Please be aware that these issues will be closed if inactive for more then 14 days :) ` dd($oMessage->hasHTMLBody(),$oMessage->getHTMLBody());` result is **false , null** if message has body with html...
Hello there, When trying to get messages, I get a long list of deprecated errors that I think are due to PHP 8.0 and 8.1 updates and deprecations. ``` PHP...
I am integrating Webklex for receiving emails in laravel. I am able to build connection but message returning null code -> $oClient = \Webklex\IMAP\Facades\Client::account('default'); $connect =$oClient->connect(); $folder = $oClient->getFolder('INBOX'); $message...
**Describe the bug** I have enabled auto-forwarding email from my Gmail account to my Webmail account, So when I receive a new email in my webmail and I check the...
Using the command described in https://github.com/Webklex/laravel-imap/issues/352 everything works fine if the messages come in short intervals. If I suddenly receive 2-3 messages in one second, 1-2 messages are not fetched...
**Describe the bug** A clear and concise description of what the bug is. The Documentation is not up to date. Function ´getFrom()` and `getSubject()` do not work as displayed in...
Hello, thanks for the project! I want to use a command and when I receive a new email, save the attachment to a file. My command code: ``` . ....
Hi , I want to ask you: can i make the connection cache? ``` $client= Cache::remember('client', 100000 * 60, function () { return $client->connect(); }); ``` if yes how ?...
Problem: Solution: Add `static` to the `Client` Facade PHPDoc block
**Describe the bug** I'm using 2.4.0 which is fine until I get to 4.0.0. The amount of CPU consumed a lot every time I connect to my project, it is...