i get below error when trying to create RESET PASSWORD feature.
this is my .env :
MAIL_MAILER=smtp
MAIL_HOST=eoptronic.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD="******"
MAIL_ENCRYPTION=ssl
[email protected]
MAIL_FROM_NAME="${APP_NAME}"
i also did adding this code in config/mail.php :
'stream' => [
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true,
],
],
'from' => [
'address' => env('MAIL_FROM_ADDRESS', '[email protected]'),
'name' => env('MAIL_FROM_NAME', 'EOI Developer - Reset Password'),
],