Hi, I installed laravel correctly in a namecheap shared-hosting, I'm trying to see if Laravel's "reset password" it's work, but I do not get the email.
This is my configuration in .env
MAIL_DRIVER=smtp
MAIL_HOST=mail.domain.ext
MAIL_PORT=465
[email protected]
MAIL_PASSWORD=password
my mail.php:
'driver' => env('MAIL_DRIVER'),
'host' => env('MAIL_HOST'),
'port' => env('MAIL_PORT'),
'from' => [
'address' => env('MAIL_FROM_ADDRESS', '[email protected]'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'sendmail' => '/usr/sbin/sendmail -bs',
where am I wrong? I checked in the storage / log and I have no log...