You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@ Laravel IMAP is an easy way to integrate the native php imap library into your *
25
25
-[Attachments](#attachments)
26
26
-[Advanced fetching](#advanced-fetching)
27
27
-[Specials](#specials)
28
+
-[Support](#support)
28
29
-[Documentation](#documentation)
29
30
-[Client::class](#clientclass)
30
31
-[Message::class](#messageclass)
@@ -351,6 +352,35 @@ Find the folder containing a message:
351
352
$oFolder = $aMessage->getContainingFolder();
352
353
```
353
354
355
+
## Support
356
+
If you encounter any problems or if you find a bug, please don't hesitate to create a new [issue](https://github.com/Webklex/laravel-imap/issues).
357
+
However please be aware that it might take some time to get an answer :)
358
+
359
+
If you need **immediate** or **commercial** support, feel free to send me a mail at [email protected].
360
+
361
+
##### A little notice
362
+
If you write source code in your issue, please consider to format it correctly. This makes it so much nicer to read
363
+
and people are more likely to comment and help :)
364
+
365
+
``` php
366
+
367
+
echo 'your php code...';
368
+
369
+
```
370
+
371
+
will turn into:
372
+
```php
373
+
echo 'your php code...';
374
+
```
375
+
376
+
### Features & pull requests
377
+
Everyone can contribute to this project. Every pull request will be considered but it can also happen to be declined.
378
+
To prevent unnecessary work, please consider to create a [feature issue](https://github.com/Webklex/laravel-imap/issues/new?template=feature_request.md)
379
+
first, if you're planning to do bigger changes. Of course you can also create a new [feature issue](https://github.com/Webklex/laravel-imap/issues/new?template=feature_request.md)
380
+
if you're just wishing a feature ;)
381
+
382
+
>Off topic, rude or abusive issues will be deleted without any notice.
0 commit comments