Webklex
Webklex
I hacked together an alternative idle function, which doesn't check if the `IDLE` command got acknowledged. ```php /** @var \Webklex\PHPIMAP\Client $client */ $client->connect(); /** @var \Webklex\PHPIMAP\Folder $folder */ $folder =...
Hi @syedajmal1998 , nah you've did everything right :) Thanks for bringing this issue up :+1: At the moment I would like to wait a little bit to see if...
Hi @vigstudio , many thanks for the report. Are you sure that it is code from this repository? This repository is just a wrapper for [Webklex/php-imap](https://github.com/Webklex/php-imap). If it is indeed...
Hi @matran2210 , many thanks for your report. To verify and replicate your report I'll need some additional information: - Used config -- Please provide the used config, if you...
Hi @matran2210 , this library isn't capable of sending messages. To send messages, you'll need to use a different protocol (SMTP) which isn't supported by this library. I'm confused what...
Hi @epocci , many thanks for the suggestion. Unfortunately that isn't possible. Attachments are part of the message body itself and therefor can't be fetched separately. However you can currently...
Hi @epocci , I'm sorry, but I don't understand what you are asking. Are you looking for PEEK support? It's currently not supported - at least not directly. You are...
Hi @mihakot , many thanks for your report. I just pushed a patch to cast the return value of several `ImapProtocol::class` methods into a boolean value. Best regards,
Hi @mihakot , this might take a little bit. If you don't mid, I would like to hear your thought regarding the release frequency: #265 Best regards,
Hi @olrtan , that's a good question. I've never tried it. You could try something like this: ```php $client= Cache::remember('client', 100000 * 60, function () { $client = Webklex\IMAP\Facades\Client::account('default'); $client->connect();...