Skip to content

Commit

Permalink
Fix MAIL_FROM_ADDRESS in EmailSettingsCommand (#4648)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy132 authored Jan 17, 2023
1 parent a2fb319 commit 2ed7f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/Environment/EmailSettingsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function handle()
$this->{$method}();
}

$this->variables['MAIL_FROM'] = $this->option('email') ?? $this->ask(
$this->variables['MAIL_FROM_ADDRESS'] = $this->option('email') ?? $this->ask(
trans('command/messages.environment.mail.ask_mail_from'),
$this->config->get('mail.from.address')
);
Expand Down

0 comments on commit 2ed7f1c

Please sign in to comment.