2FAuth/config/mail.php

144 lines
4.3 KiB
PHP
Raw Normal View History

2019-05-20 07:37:41 +02:00
<?php
return [
/*
|--------------------------------------------------------------------------
2020-10-12 08:05:33 +02:00
| Default Mailer
2019-05-20 07:37:41 +02:00
|--------------------------------------------------------------------------
|
2024-06-26 13:50:12 +02:00
| This option controls the default mailer that is used to send all email
| messages unless another mailer is explicitly specified when sending
| the message. All additional mailers can be configured within the
| "mailers" array. Examples of each type of mailer are provided.
2019-05-20 07:37:41 +02:00
|
*/
2024-04-08 16:16:27 +02:00
'default' => env('MAIL_MAILER', env('MAIL_DRIVER', 'smtp')),
2019-05-20 07:37:41 +02:00
/*
|--------------------------------------------------------------------------
2020-10-12 08:05:33 +02:00
| Mailer Configurations
2019-05-20 07:37:41 +02:00
|--------------------------------------------------------------------------
|
2020-10-12 08:05:33 +02:00
| 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.
2019-05-20 07:37:41 +02:00
|
2024-06-26 13:50:12 +02:00
| Laravel supports a variety of mail "transport" drivers that can be used
| when delivering an email. You may specify which one you're using for
| your mailers below. You may also add additional mailers if needed.
2019-05-20 07:37:41 +02:00
|
2023-08-01 11:26:58 +02:00
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
2024-06-26 13:50:12 +02:00
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
2019-05-20 07:37:41 +02:00
|
*/
2020-10-12 08:05:33 +02:00
'mailers' => [
'smtp' => [
'transport' => 'smtp',
2023-08-01 11:26:58 +02:00
'url' => env('MAIL_URL'),
2020-10-12 08:05:33 +02:00
'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,
2024-06-26 13:50:12 +02:00
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
'verify_peer' => env('MAIL_VERIFY_SSL_PEER', true),
2020-10-12 08:05:33 +02:00
],
'ses' => [
'transport' => 'ses',
],
'mailgun' => [
'transport' => 'mailgun',
2023-08-01 11:26:58 +02:00
// 'client' => [
// 'timeout' => 5,
// ],
2020-10-12 08:05:33 +02:00
],
'postmark' => [
'transport' => 'postmark',
2024-06-26 13:50:12 +02:00
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
2023-08-01 11:26:58 +02:00
// 'client' => [
// 'timeout' => 5,
// ],
2020-10-12 08:05:33 +02:00
],
2024-06-26 13:50:12 +02:00
'resend' => [
'transport' => 'resend',
],
2020-10-12 08:05:33 +02:00
'sendmail' => [
'transport' => 'sendmail',
2022-11-14 17:10:47 +01:00
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
2020-10-12 08:05:33 +02:00
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
2021-12-02 13:15:53 +01:00
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
2024-04-08 16:16:27 +02:00
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
2024-06-26 13:50:12 +02:00
2020-10-12 08:05:33 +02:00
],
2019-05-20 07:37:41 +02:00
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
2024-06-26 13:50:12 +02:00
| You may wish for all emails sent by your application to be sent from
| the same address. Here you may specify a name and address that is
| used globally for all emails that are sent by your application.
2019-05-20 07:37:41 +02:00
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
/*
|--------------------------------------------------------------------------
| Markdown Mail Settings
|--------------------------------------------------------------------------
|
| If you are using Markdown based email rendering, you may configure your
| theme and component paths here, allowing you to customize the design
| of the emails. Or, you may simply stick with the Laravel defaults!
|
*/
'markdown' => [
'theme' => 'default',
// 'theme' => env('MAIL_MARKDOWN_THEME', 'default'),
2019-05-20 07:37:41 +02:00
'paths' => [
resource_path('views/vendor/mail'),
],
],
];