Mail Driver
You need to configure your mail driver for getting customer email and sending email to them via your application form.. Configure your mail driver, By setup your smtp mail server account information into .env file.
MAIL_DRIVER=smtp
MAIL_HOST=yout_smtp_host
MAIL_PORT=mail_port
MAIL_USERNAME=username
MAIL_PASSWORD=password
MAIL_ENCRYPTION=enctype_dataYou can use gmail SMTP server for configuring your mail function. You have to Enable your gmail SMTP for this action. Alos you have to update those info into your .env file.
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=465
[email protected]
MAIL_PASSWORD=gmail_app_password
MAIL_ENCRYPTION=SSLLast updated