Skip to content

Commit

Permalink
Adiciona MAILER_TRANSPORT na config padrão do mailer
Browse files Browse the repository at this point in the history
  • Loading branch information
lpirola committed Jul 9, 2024
1 parent 34cc807 commit 681c486
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions api/mapas/config/mailer.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

use \MapasCulturais\i;

return [
Expand All @@ -24,9 +25,9 @@
*/
'mailer.transport' => 'smtp://mailhog:1025',
'mailer.transport' => env('MAILER_TRANSPORT', 'smtp://mailhog:1025'),
'mailer.from' => env('MAILER_FROM', 'suporte@mapasculturais.org'),
'mailer.alwaysTo' => env('MAILER_ALWAYSTO', false),
'mailer.bcc' => env('MAILER_BCC', ''),
'mailer.replyTo' => env('MAILER_REPLYTO', '')
];
];

0 comments on commit 681c486

Please sign in to comment.