Fix MailFromName showing as ${APPNAME}
This commit is contained in:
parent
26bd943dd1
commit
4be83c4c0d
1 changed files with 1 additions and 1 deletions
|
@ -461,7 +461,7 @@ class SettingsSeeder extends Seeder
|
|||
Settings::firstOrCreate([
|
||||
'key' => 'SETTINGS::MAIL:FROM_NAME',
|
||||
], [
|
||||
'value' => env('MAIL_FROM_NAME', 'Controlpanel'),
|
||||
'value' => env('APP_NAME', 'Controlpanel'),
|
||||
'type' => 'string',
|
||||
'description' => 'Mailer From Name'
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue