|
@@ -4,45 +4,89 @@ return [
|
|
|
|
|
|
/*
|
|
|
|--------------------------------------------------------------------------
|
|
|
- | Mail Driver
|
|
|
+ | Default Mailer
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
- | 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", "log", "array"
|
|
|
+ | This option controls the default mailer that is used to send any email
|
|
|
+ | messages sent by your application. Alternative mailers may be setup
|
|
|
+ | and used as needed; however, this mailer will be used by default.
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
- 'driver' => env('MAIL_DRIVER', 'smtp'),
|
|
|
+ 'default' => env('MAIL_DRIVER', 'smtp'),
|
|
|
|
|
|
/*
|
|
|
|--------------------------------------------------------------------------
|
|
|
- | SMTP Host Address
|
|
|
+ | Mailer Configurations
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
- | 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.
|
|
|
+ | Here you may configure all of the mailers used by your application plus
|
|
|
+ | their respective settings. Several examples have been configured for
|
|
|
+ | you and you are free to add your own as your application requires.
|
|
|
|
|
|
|
- */
|
|
|
-
|
|
|
- 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
|
|
-
|
|
|
- /*
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- | SMTP Host Port
|
|
|
- |--------------------------------------------------------------------------
|
|
|
+ | Laravel supports a variety of mail "transport" drivers to be used while
|
|
|
+ | sending an e-mail. You will specify which one you are using for your
|
|
|
+ | mailers below. You are free to add additional mailers as required.
|
|
|
|
|
|
|
- | 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.
|
|
|
+ | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
|
|
+ | "postmark", "log", "array", "failover"
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
- 'port' => env('MAIL_PORT', 587),
|
|
|
+ 'mailers' => [
|
|
|
+ 'smtp' => [
|
|
|
+ 'transport' => 'smtp',
|
|
|
+ 'url' => env('MAIL_URL'),
|
|
|
+ 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
|
|
|
+ 'port' => env('MAIL_PORT', 587),
|
|
|
+ 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
|
|
+ 'username' => env('MAIL_USERNAME'),
|
|
|
+ 'password' => env('MAIL_PASSWORD'),
|
|
|
+ 'timeout' => null,
|
|
|
+ 'local_domain' => env('MAIL_EHLO_DOMAIN'),
|
|
|
+ 'verify_peer' => env('MAIL_SMTP_VERIFY_PEER', true),
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'ses' => [
|
|
|
+ 'transport' => 'ses',
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'mailgun' => [
|
|
|
+ 'transport' => 'mailgun',
|
|
|
+ // 'client' => [
|
|
|
+ // 'timeout' => 5,
|
|
|
+ // ],
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'postmark' => [
|
|
|
+ 'transport' => 'postmark',
|
|
|
+ // 'client' => [
|
|
|
+ // 'timeout' => 5,
|
|
|
+ // ],
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'sendmail' => [
|
|
|
+ 'transport' => 'sendmail',
|
|
|
+ 'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'log' => [
|
|
|
+ 'transport' => 'log',
|
|
|
+ 'channel' => env('MAIL_LOG_CHANNEL'),
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'array' => [
|
|
|
+ 'transport' => 'array',
|
|
|
+ ],
|
|
|
+
|
|
|
+ 'failover' => [
|
|
|
+ 'transport' => 'failover',
|
|
|
+ 'mailers' => [
|
|
|
+ 'smtp',
|
|
|
+ 'log',
|
|
|
+ ],
|
|
|
+ ],
|
|
|
+ ],
|
|
|
|
|
|
/*
|
|
|
|--------------------------------------------------------------------------
|
|
@@ -57,63 +101,9 @@ return [
|
|
|
|
|
|
'from' => [
|
|
|
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
|
|
|
- 'name' => env('MAIL_FROM_NAME', 'Example'),
|
|
|
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
|
|
|
],
|
|
|
|
|
|
- /*
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- | E-Mail Encryption Protocol
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- |
|
|
|
- | Here you may specify the encryption protocol that should be used when
|
|
|
- | the application send e-mail messages. A sensible default using the
|
|
|
- | transport layer security protocol should provide great security.
|
|
|
- |
|
|
|
- */
|
|
|
-
|
|
|
- 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
|
|
|
-
|
|
|
- /*
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- | SMTP Server Username
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- |
|
|
|
- | If your SMTP server requires a username for authentication, you should
|
|
|
- | set it here. This will get used to authenticate with your server on
|
|
|
- | connection. You may also set the "password" value below this one.
|
|
|
- |
|
|
|
- */
|
|
|
-
|
|
|
- 'username' => env('MAIL_USERNAME'),
|
|
|
- 'password' => env('MAIL_PASSWORD'),
|
|
|
-
|
|
|
-
|
|
|
- /*
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- | SMTP EHLO Domain
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- |
|
|
|
- | Some SMTP servers require to present a known domain in order to
|
|
|
- | allow sending through its relay. (ie: Google Workspace)
|
|
|
- | This will use the MAIL_SMTP_EHLO env variable to avoid the 421 error
|
|
|
- | if not present by authenticating the sender domain instead the host.
|
|
|
- |
|
|
|
- */
|
|
|
- 'local_domain' => env('MAIL_EHLO_DOMAIN'),
|
|
|
-
|
|
|
- /*
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- | Sendmail System Path
|
|
|
- |--------------------------------------------------------------------------
|
|
|
- |
|
|
|
- | When using the "sendmail" driver to send e-mails, we will need to know
|
|
|
- | the path to where Sendmail lives on this server. A default path has
|
|
|
- | been provided here, which will work well on most of your systems.
|
|
|
- |
|
|
|
- */
|
|
|
-
|
|
|
- 'sendmail' => '/usr/sbin/sendmail -bs',
|
|
|
-
|
|
|
/*
|
|
|
|--------------------------------------------------------------------------
|
|
|
| Markdown Mail Settings
|