clrghouz/config/mail.php

117 lines
3.5 KiB
PHP
Raw Normal View History

2018-11-15 10:45:49 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
2021-05-03 12:53:40 +00:00
| Default Mailer
2018-11-15 10:45:49 +00:00
|--------------------------------------------------------------------------
|
2024-11-04 07:25:49 +00: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.
2018-11-15 10:45:49 +00:00
|
*/
2024-11-04 07:25:49 +00:00
'default' => env('MAIL_MAILER', 'log'),
2018-11-15 10:45:49 +00:00
/*
|--------------------------------------------------------------------------
2021-05-03 12:53:40 +00:00
| Mailer Configurations
2018-11-15 10:45:49 +00:00
|--------------------------------------------------------------------------
|
2021-05-03 12:53:40 +00: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.
2018-11-15 10:45:49 +00:00
|
2024-11-04 07:25:49 +00: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.
2018-11-15 10:45:49 +00:00
|
2024-11-04 07:25:49 +00:00
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
2018-11-15 10:45:49 +00:00
|
*/
2021-05-03 12:53:40 +00:00
'mailers' => [
2024-11-04 07:25:49 +00:00
2021-05-03 12:53:40 +00:00
'smtp' => [
'transport' => 'smtp',
2024-11-04 07:25:49 +00:00
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
2021-05-03 12:53:40 +00:00
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
2024-11-04 07:25:49 +00:00
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
2021-05-03 12:53:40 +00:00
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
2024-11-04 07:25:49 +00:00
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
// 'client' => [
// 'timeout' => 5,
// ],
],
'resend' => [
'transport' => 'resend',
2021-05-03 12:53:40 +00:00
],
'sendmail' => [
'transport' => 'sendmail',
2024-11-04 07:25:49 +00:00
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
2021-05-03 12:53:40 +00:00
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
2024-11-04 07:25:49 +00:00
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
2021-05-03 12:53:40 +00:00
],
2018-11-15 10:45:49 +00:00
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
2024-11-04 07:25:49 +00: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.
2018-11-15 10:45:49 +00:00
|
*/
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
];