diff --git a/config/mail.php b/config/mail.php index bc7ea8e7..8a6ad508 100644 --- a/config/mail.php +++ b/config/mail.php @@ -39,26 +39,15 @@ return [ 'smtp' => [ 'transport' => 'smtp', - 'host' => env('MAIL_HOST'), - 'port' => env('MAIL_PORT'), - 'encryption' => env('MAIL_ENCRYPTION'), + 'scheme' => env('MAIL_SCHEME'), + 'url' => env('MAIL_URL'), + 'host' => env('MAIL_HOST', '127.0.0.1'), + 'port' => env('MAIL_PORT', 2525), 'username' => env('MAIL_USERNAME'), 'password' => env('MAIL_PASSWORD'), 'timeout' => null, -<<<<<<< HEAD - - 'stream' => [ - 'ssl' => [ - 'verify_peer' => false, - 'verify_peer_name' => false, - 'allow_self_signed' => true, - ], - ], - ], -======= 'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url((string) env('APP_URL', 'http://localhost'), PHP_URL_HOST)), - ], ->>>>>>> f59b47a (Modificación de mail cofig) + ], 'ses' => [ 'transport' => 'ses', @@ -110,16 +99,6 @@ return [ ], - /* - |-------------------------------------------------------------------------- - | Global "From" Address - |-------------------------------------------------------------------------- - | - | You may wish for all emails sent by your application to be sent from - | the same address. Here you may specify a name and address that is - | used globally for all emails that are sent by your application. - | - */ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),