Ploi Core
Ploi Core

Setting up email

In order for the system to send emails you'll have to setup emailing.

Because this is a Laravel application, luckily, a lot of supported mailing solutions are available.

These are

  • Postmarkapp
  • Sendmail
  • SMTP
  • Mailgun

To choose a emailing provider, head over to the .env file and edit the emailing credentials. These look like this by default:

MAIL_MAILER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"