Skip to content

Commit f50a831

Browse files
committed
Update default mailer
1 parent 47bf675 commit f50a831

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

config/mail.php

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,14 @@
66

77
// Default Mailer
88

9-
'default' => env('MAIL_MAILER', 'smtp'),
9+
'default' => env('MAIL_MAILER', 'log'),
1010

1111
// Mailer Configurations
1212

1313
'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,
14+
'log' => [
15+
'transport' => 'log',
16+
'channel' => env('MAIL_LOG_CHANNEL'),
2317
],
2418
],
2519

0 commit comments

Comments
 (0)