From f640ca035e72414ba3346f5a1d5caf26ffdc381c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 19 Feb 2026 11:00:39 -0600 Subject: [PATCH] =?UTF-8?q?Modificaci=C3=B3n=20de=20mail=20cofig=20nuevame?= =?UTF-8?q?nte=20para=20asegurar=20envios?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/mail.php | 31 +++++-------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) 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'),