diff --git a/.env.example b/.env.example index 4df47ad6f..9504186ea 100644 --- a/.env.example +++ b/.env.example @@ -37,7 +37,7 @@ MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS="hello@example.com" -MAIL_FROM_NAME="${APP_NAME}" +MAIL_FROM_NAME="Speedtest Tracker" AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= diff --git a/.env.production b/.env.production index 2ec9c2f44..646417915 100644 --- a/.env.production +++ b/.env.production @@ -17,7 +17,7 @@ MAIL_USERNAME=null MAIL_PASSWORD=null MAIL_ENCRYPTION=null MAIL_FROM_ADDRESS="hello@example.com" -MAIL_FROM_NAME="${APP_NAME}" +MAIL_FROM_NAME="Speedtest Tracker" # Telegram bot config TELEGRAM_BOT_TOKEN=null diff --git a/config/mail.php b/config/mail.php index e652bd025..6c44aeb1c 100644 --- a/config/mail.php +++ b/config/mail.php @@ -100,7 +100,7 @@ 'from' => [ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'), - 'name' => env('MAIL_FROM_NAME', 'Example'), + 'name' => env('MAIL_FROM_NAME', 'Speedtest Tracker'), ], /*