Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed May 21, 2019
1 parent 0cf4c09 commit e5b351c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to `laravel-newsletter` will be documented in this file.

## 4.5.0 - 2019-05-21
- add `null` driver

## 4.4.1 - 2019-04-28
- fix functions to manage tags

Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ This will publish a file `newsletter.php` in your config directory with the foll
```php
return [

/*
* The driver to use to interact with MailChimp API.
* You may use "log" or "null" to prevent calling the
* API directly from your environment.
*/
'driver' => env('MAILCHIMP_DRIVER', 'api'),

/*
* The API key of a MailChimp account. You can find yours at
* https://us10.admin.mailchimp.com/account/api-key-popup/.
Expand Down Expand Up @@ -123,7 +130,6 @@ return [
* If you're having trouble with https connections, set this to false.
*/
'ssl' => true,

];
```

Expand Down

0 comments on commit e5b351c

Please sign in to comment.