app: fix email config keys

This commit is contained in:
Matthew Penner 2022-12-12 14:21:47 -07:00
parent 3432cadd4a
commit 63a179d7f3
No known key found for this signature in database
3 changed files with 22 additions and 22 deletions

View file

@ -37,13 +37,13 @@ class SettingsServiceProvider extends ServiceProvider
* when using the SMTP driver.
*/
protected array $emailKeys = [
'mail:host',
'mail:port',
'mail:mailers:smtp:host',
'mail:mailers:smtp:port',
'mail:mailers:smtp:encryption',
'mail:mailers:smtp:username',
'mail:mailers:smtp:password',
'mail:from:address',
'mail:from:name',
'mail:encryption',
'mail:username',
'mail:password',
];
/**