Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
iwasherefirst2 authored Mar 11, 2020
1 parent e41cb77 commit d8d2aa4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Configure your email clients in `config/multimail.php`:
'[email protected]' =>
[
'pass' => env('first_mail_password'),
'from' => "Max Musterman",
'from_name' => "Max Musterman",
],
'[email protected]' =>
[
Expand Down Expand Up @@ -128,14 +128,14 @@ If you wish to send from mails with different provider, then you may create anot
[
'pass' => env('first_mail_password'),
'username' => env('first_mail_username'),
'from' => "Max Musterman",
'from_name' => "Max Musterman",
// <------ no provider given because 'default' provider is used
],
'contact@other_domain.net' =>
[
'pass' => env('second_mail_password'),
'username' => env('second_mail_username'),
'from' => "Alice Armania",
'from_name' => "Alice Armania",
'provider' => 'new_provider', // <------ specify new provider here
],
],
Expand Down Expand Up @@ -181,13 +181,13 @@ You may provide `default` credentials inside the `email` array from `config/mult
[
'pass' => env('first_mail_password'),
'username' => env('first_mail_username'),
'from' => "Max Musterman",
'from_name' => "Max Musterman",
],
'[email protected]' =>
[
'pass' => env('second_mail_password'),
'username' => env('second_mail_username'),
'from' => "Alice Armania",
'from_name' => "Alice Armania",
],
'default' =>
[
Expand Down

0 comments on commit d8d2aa4

Please sign in to comment.