From d77d6d6fcb888d3b04adfec62b4631d2edbb59e4 Mon Sep 17 00:00:00 2001 From: Tobias Fiebig Date: Wed, 23 Mar 2022 12:38:59 +0100 Subject: [PATCH] Changed default SMTP sender address to noreply@example.com --- config/config.default.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.default.php b/config/config.default.php index 7e11ec8b..470c2cb7 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -53,7 +53,7 @@ return [ 'driver' => env('MAIL_DRIVER', 'mail'), 'from' => [ // From address of all emails - 'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'), + 'address' => env('MAIL_FROM_ADDRESS', 'noreply@example.com'), 'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')), ],