Possible fix for port.

This commit is contained in:
James Cole 2022-04-08 19:30:00 +02:00
parent b20b8868bf
commit 59199134a6
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -39,7 +39,7 @@ return [
'smtp' => [
'transport' => 'smtp',
'host' => env('MAIL_HOST', 'smtp.mailtrap.io'),
'port' => env('MAIL_PORT', 2525),
'port' => (int) env('MAIL_PORT', 2525),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),