Skip to content

Commit 7dbce68

Browse files
committed
wip
1 parent 094125c commit 7dbce68

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Laravel Mailbox
1+
# Laravel Mailbox 📬
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/beyondcode/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)
44
[![Build Status](https://img.shields.io/travis/beyondcode/laravel-mailbox/master.svg?style=flat-square)](https://travis-ci.org/beyondcode/laravel-mailbox)
55
[![Quality Score](https://img.shields.io/scrutinizer/g/beyondcode/laravel-mailbox.svg?style=flat-square)](https://scrutinizer-ci.com/g/beyondcode/laravel-mailbox)
66
[![Total Downloads](https://img.shields.io/packagist/dt/beyondcode/laravel-mailbox.svg?style=flat-square)](https://packagist.org/packages/beyondcode/laravel-mailbox)
77

8-
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
8+
Handle incoming emails in your Laravel application.
99

1010
## Installation
1111

@@ -42,7 +42,7 @@ If you discover any security related issues, please email [email protected] ins
4242

4343
## Credits
4444

45-
- [Marcel Pociot](https://github.com/:author_username)
45+
- [Marcel Pociot](https://github.com/mpociot)
4646
- [All Contributors](../../contributors)
4747

4848
## License

config/mailbox.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,33 @@
22

33
return [
44

5+
/*
6+
* The driver to use when listening for incoming emails.
7+
* It defaults to the mail driver that you are using.
8+
*
9+
* Supported drivers: "log", "mailgun"
10+
*/
511
'driver' => env('MAIL_DRIVER', 'log'),
612

13+
/*
14+
* The path for driver specific routes. This is where
15+
* you need to point your driver specific callbacks
16+
* to.
17+
*
18+
* For example: /laravel-mailbox/sendgrid/
19+
*/
720
'path' => 'laravel-mailbox',
821

22+
/*
23+
* The amount of days that incoming emails should be stored in your
24+
* application. You can use the cleanup artisan command to
25+
* delete all older inbound emails on a regular basis.
26+
*/
927
'store_incoming_emails_for_days' => 1,
1028

29+
/*
30+
* Third party service configuration.
31+
*/
1132
'services' => [
1233

1334
'mailgun' => [

0 commit comments

Comments
 (0)