Sebastian B
Sebastian B
You can iterate the folders in a foreach loop. ```php use Webklex\PHPIMAP\Folder; $folders = $client->getFolders(); /** @var Folder $folder */ foreach ($folders as $folder) { // ... } ``` Or...
What is ¤�8Ӹ���h supposed to mean?
You could enable debug mode and then see what actually comes back from the server. ```php $config["options"]["debug"] = true; $cm = new ClientManager($config); ```
Daum.net looks to be a Korean provider. Could it be that the characters are not recognized correctly and are therefore misinterpreted? In Gmail I have a mailbox, which is only...
I found the method that converts the name of the folder. Maybe this one does not work properly? https://github.com/Webklex/php-imap/blob/ed93fe43ac3e71ffcc4e9a61d3016f91173d617a/src/Folder.php#L186-L195 What happens if you change it to the following method? ```php...
Hi @hiralmavani, please enable debug mode and provide us with the output. Maybe the server is not sending the mailbox name correctly. Do you have the possibility to log into...
Hi @gcornelisse, take a look at this issue. Maybe it will help with your error. https://github.com/Webklex/laravel-imap/issues/273 The idea with `mb_detect_encoding` is very interesting. But what should the function do then...
We should remove the return values from the class again. The return values were introduced only in PHP 7. Earlier PHP versions would run into an error with this. Who...
Hi @shahmirerror, are you sure that the attachment is encoded as base64? Microsoft Outlook uses its own file format ([TNEF](https://en.wikipedia.org/wiki/Transport_Neutral_Encapsulation_Format)) for attachments. The attachments are then called winmail.dat.
It seems like the same thing is happening with references. Does this have a particular background or could we remove the less than / greater than signs in reply-to and...