Skip to content

Commit

Permalink
Fix MAIL_FROM_ADDRESS in EmailSettingsCommand (pterodactyl#4648)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy132 authored and colecrouter committed Apr 2, 2023
1 parent d56ef1c commit 4e5d803
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 4e5d803

Please sign in to comment.