WA
Asked
How do we configure email settings like smtp so that we can send customers email verification requests?
- MSAnsweredHello,
You can update mail settings under settings. For SaaS version, you can edit the `.env` file to update mail config.
```
MAIL_MAILER=smtp
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_USERNAME=MyBiz
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="[email protected]"
MAIL_FROM_NAME="${APP_NAME}"
```
Thank you - Login to Reply