Skip to content

Commit

Permalink
Reorder mail config keys to match Laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeTowers authored Apr 25, 2024
1 parent 3e85233 commit 604fbf5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
'mailers' => [
'smtp' => [
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
'port' => env('MAIL_PORT', 587),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'port' => env('MAIL_PORT', 587),
'timeout' => null,
'transport' => 'smtp',
'username' => env('MAIL_USERNAME'),
],
'ses' => [
'transport' => 'ses',
Expand Down

0 comments on commit 604fbf5

Please sign in to comment.