From 85c719c24dfe08fc64a274e8b3c7f8da5d0afdf9 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Sat, 19 Dec 2020 01:33:59 +0000 Subject: [PATCH] Fix bad key name --- app/Console/Commands/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index d7f81ae..ff71cd9 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -99,7 +99,7 @@ class Install extends Command $settings['MAIL_PASSWORD'] = $this->secret('SMTP Password (Input won\'t be seen)'); $settings['MAIL_PORT'] = $this->ask('SMTP Server Port'); $settings['MAIL_HOST'] = $this->ask('SMTP Server Hostname'); - $settings['MAIL_FROM'] = $this->ask('E-mail address to send from: '); + $settings['MAIL_FROM_ADDRESS'] = $this->ask('E-mail address to send from'); $this->info('== Notification Settings (5/6) (Slack) =='); $settings['SLACK_INTEGRATION_WEBHOOK'] = $this->ask('Integration webhook URL');