Skip to content

Commit

Permalink
add upgrade guide for config file changes to readme.md file
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcbrn committed May 10, 2022
1 parent 9e26f60 commit 90b44d6
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,21 @@ for all of the events. If you used a `prefix` in the config file then this shoul
https://example.com/your-prefix/email-log/webhooks/event
```

## Upgrade from 5.1.0 to 5.2.0 - BREAKING CHANGE

Add the following parameters to the end of the `config/email_log.php` array:

```
...
'routes_webhook_prefix' => env('EMAIL_LOG_ROUTES_WEBHOOK_PREFIX', env('EMAIL_LOG_ROUTES_PREFIX','')),
'mailgun' => [
'secret' => env('MAILGUN_SECRET', null),
'filter_unknown_emails' => env('EMAIL_LOG_MAILGUN_FILTER_UNKNOWN_EMAILS', true),
],
```


## Upgrade from 5.0.3 to 5.1.0 - BREAKING CHANGE

As email log attachments might quickly grow to large size you'd want to use some external storage to save them. To enable this we need to utilize the Laravel's Filesystem. Follow the guide below if you were using the 5.0.3 and wish to upgrade to 5.1.0.
Expand Down

0 comments on commit 90b44d6

Please sign in to comment.