Drackokacka

Results 1 comments of Drackokacka

If you don't need to access older messages, you could use folder's method `since` to get smaller batch of messages, see example: ```php $messages = $folder->query() ->since('01.01.2024') ->all(); ``` I...