Add MySQL schema dump for phpMyAdmin
This commit is contained in:
16
config/mail.php
Normal file
16
config/mail.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'driver' => env('MAIL_DRIVER', 'smtp'),
|
||||
'host' => env('MAIL_HOST', 'localhost'),
|
||||
'port' => env('MAIL_PORT', 25),
|
||||
'username' => env('MAIL_USERNAME'),
|
||||
'password' => env('MAIL_PASSWORD'),
|
||||
'encryption' => env('MAIL_ENCRYPTION'),
|
||||
'timeout' => env('MAIL_TIMEOUT', 30),
|
||||
'sendmail_path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs'),
|
||||
'from' => [
|
||||
'address' => env('MAIL_FROM_ADDRESS', 'no-reply@example.com'),
|
||||
'name' => env('MAIL_FROM_NAME', 'CMS Portal'),
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user