Skip to content

Commit 2ed7f1c

Browse files
authored
Fix MAIL_FROM_ADDRESS in EmailSettingsCommand (pterodactyl#4648)
1 parent a2fb319 commit 2ed7f1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Console/Commands/Environment/EmailSettingsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function handle()
5757
$this->{$method}();
5858
}
5959

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

0 commit comments

Comments
 (0)