8000 [12.x] Update `config/mail.php` to match the latest core configuration by AhmedAlaa4611 · Pull Request #6594 · laravel/laravel · GitHub
[go: up one dir, main page]

Skip to content

[12.x] Update config/mail.php to match the latest core configuration #6594

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update config/mail.php to match the latest core configuration
  • Loading branch information
AhmedAlaa4611 committed Apr 2, 2025
commit e2f6cf8a7214d80745f368c2d254ac566d98dd01
21 changes: 21 additions & 0 deletions config/mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
'smtp',
'log',
],
'retry_after' => 60,
],

'roundrobin' => [
Expand All @@ -93,6 +94,7 @@
'ses',
'postmark',
],
'retry_after' => 60,
],

],
Expand All @@ -113,4 +115,23 @@
'name' => env('MAIL_FROM_NAME', 'Example'),
],

/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/

'markdown' => [
'theme' => env('MAIL_MARKDOWN_THEME', 'default'),

'paths' => [
resource_path('views/vendor/mail'),
],
],

];
0