Fixes ACCOUNTS-BH. Fix port param type

This commit is contained in:
ErickSkrauch 2024-12-02 14:23:43 +01:00
parent 2d649afd4f
commit 2442329895
No known key found for this signature in database
GPG Key ID: 669339FCBB30EE0E

View File

@ -63,7 +63,7 @@ return [
'host' => getenv('SMTP_HOST'), 'host' => getenv('SMTP_HOST'),
'username' => getenv('SMTP_USER'), 'username' => getenv('SMTP_USER'),
'password' => getenv('SMTP_PASS'), 'password' => getenv('SMTP_PASS'),
'port' => getenv('SMTP_PORT') ?: 587, 'port' => (int)(getenv('SMTP_PORT') ?: 587),
'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls', 'encryption' => getenv('SMTP_ENCRYPTION') ?: 'tls',
], ],
], ],