My question is the definition of MAIL_ENCRYPTION
, in file .env
we have MAIL_ENCRYPTION=null
and inside file config\mail.php
line 74 we have the excerpt:
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
Considering that the file .env
MAIL_ENCRYPTION
was set to null
, its final value will be tls
?
I was in doubt because the assignment of null
confused me.