diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/config.default.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.default.php b/config/config.default.php index 56ac6e6a..4207754b 100644 --- a/config/config.default.php +++ b/config/config.default.php @@ -17,6 +17,9 @@ return [ // Enable maintenance mode (show a static page) 'maintenance' => (bool)env('MAINTENANCE', false), + // Application name (not the event name!) + 'app_name' => env('APP_NAME', 'Engelsystem'), + // Set to development to enable debugging messages 'environment' => env('ENVIRONMENT', 'production'), @@ -36,7 +39,7 @@ return [ 'from' => [ // From address of all emails 'address' => env('MAIL_FROM_ADDRESS', 'noreply@engelsystem.de'), - 'name' => env('MAIL_FROM_NAME', 'Engelsystem') + 'name' => env('MAIL_FROM_NAME', env('APP_NAME', 'Engelsystem')) ], 'host' => env('MAIL_HOST', 'localhost'), |