We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47bf675 commit f50a831Copy full SHA for f50a831
config/mail.php
@@ -6,20 +6,14 @@
6
7
// Default Mailer
8
9
- 'default' => env('MAIL_MAILER', 'smtp'),
+ 'default' => env('MAIL_MAILER', 'log'),
10
11
// Mailer Configurations
12
13
'mailers' => [
14
- 'smtp' => [
15
- 'transport' => 'smtp',
16
- 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
17
- 'port' => env('MAIL_PORT', 587),
18
- 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
19
- 'username' => env('MAIL_USERNAME'),
20
- 'password' => env('MAIL_PASSWORD'),
21
- 'timeout' => null,
22
- 'auth_mode' => null,
+ 'log' => [
+ 'transport' => 'log',
+ 'channel' => env('MAIL_LOG_CHANNEL'),
23
],
24
25
0 commit comments