Email Configuration
By default, the system is set up to log all mails into files. You have to configure this settings to send emails. You may use any of this supported services: “smtp”, “sendmail”, “mailgun”, “mandrill” or “sparkpost”. To configure email, open the .env
file and update these keys with your values.
Warning! The system will generate errors if the mail fails. So double check the email configuration. Talk to your email/hosting service provider if you’re not sure what to do.
. . . MAIL_DRIVER=log MAIL_HOST=smtp.example.com MAIL_PORT=587 MAIL_USERNAME=user MAIL_PASSWORD=secret MAIL_ENCRYPTION=tls MAIL_FROM_ADDRESS=no-reply@example.com MAIL_FROM_NAME=No-Reply MAIL_REPLY_TO_ADDRESS=reply@example.com MAIL_REPLY_TO_NAME=Reply . . .
The MAIL_FROM_ADDRESS
and MAIL_FROM_NAME
will be used to sent email by your marketplace where no specific sender information available to use.