Laravel send email

Lunatico

New Member
Messages
6
Reaction score
0
Points
1
I am trying to use the settings of my email created in my panel to be able to reset my password, but nothing is reaching my email on my website

This is what I put in my .env file


MAIL_MAILER=smtp
MAIL_HOST=mail.mandrake.x10.mx
MAIL_PORT=465
MAIL_USERNAME=info@mandrake.x10.mx
MAIL_PASSWORD=password
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="info@mandrake.x10.mx"

MAIL_FROM_NAME="${APP_NAME}"
 

mrburnsx

Community Advocate
Community Support
Messages
223
Reaction score
27
Points
28
The mail encryption and port is wrong. Mail Encryption would need to be STARTTLS, and the correct port number is 587
 
Top