|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Laravel supports both SMTP and PHP's "mail" function as drivers for the
| sending of e-mail. You may specify which one you're using throughout
| your application here. By default, Laravel is setup for SMTP mail.
| Supported: "smtp", "sendmail", "mailgun", "mandrill", "ses",
| "sparkpost", "postmark", "log", "array"
'driver' => env('MAIL_DRIVER', 'smtp'),
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Here you may provide the host address of the SMTP server used by your
| applications. A default option is provided that is compatible with
| the Mailgun mail service which will provide reliable deliveries.
'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| This is the SMTP port used by your application to deliver e-mails to
| users of the application. Like the host we have set this value to
| stay compatible with the Mailgun e-mail application by default.