Why I need it

You will need to have SMTP ( way to send mail ) because the system will use it to send password reset email

Where I can set it

You can setup the SMTP Configuration in Site Settings → SMTP

Untitled

RESEND SMTP ( Recommended for best email delivery and Up to 3,000 emails / mo - free )

Laravel with SMTP - Resend

MAIL_MAILER=smtp
MAIL_HOST=smtp.resend.com
MAIL_PORT=587
MAIL_USERNAME=resend
MAIL_PASSWORD=YOUR_API_KEY
MAIL_ENCRYPTION=tls
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="Your App Name"

SMTP from shared hosting

This is probably the easiest way to obtain SMTP data. Create an email in your hosting and get note of the credentials. You will need them in the install process.

https://i.imgur.com/t9Awl7B.png

Then click on “Connect Device”. You will find all required info there

https://i.imgur.com/QPpwKY2.png

Here are some examples how it may look

MAIL_MAILER=sendmail
MAIL_ENCRYPTION=ssl
MAIL_PORT=465
MAIL_HOST=mail.restoqr.online
[email protected]
MAIL_PASSWORD=*****
[email protected]
MAIL_FROM_NAME="${APP_NAME}"