jonnybarnes.uk/config/mail.php

104 lines
3.2 KiB
PHP
Raw Normal View History

2016-05-19 15:01:28 +01:00
<?php
return [
/*
|--------------------------------------------------------------------------
2020-10-19 19:41:50 +01:00
| Default Mailer
2016-05-19 15:01:28 +01:00
|--------------------------------------------------------------------------
|
2024-03-19 20:13:36 +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.
2016-05-19 15:01:28 +01:00
|
*/
2024-03-19 20:13:36 +00:00
'default' => env('MAIL_MAILER', 'log'),
2016-05-19 15:01:28 +01:00
/*
|--------------------------------------------------------------------------
2020-10-19 19:41:50 +01:00
| Mailer Configurations
2016-05-19 15:01:28 +01:00
|--------------------------------------------------------------------------
|
2020-10-19 19:41:50 +01: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.
2016-05-19 15:01:28 +01:00
|
2024-03-19 20:13:36 +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.
2016-05-19 15:01:28 +01:00
|
2023-02-18 09:34:57 +00:00
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
2024-03-19 20:13:36 +00:00
| "postmark", "log", "array", "failover", "roundrobin"
2016-05-19 15:01:28 +01:00
|
*/
2020-10-19 19:41:50 +01:00
'mailers' => [
2024-03-19 20:13:36 +00:00
2020-10-19 19:41:50 +01:00
'smtp' => [
'transport' => 'smtp',
2025-03-01 15:00:41 +00:00
'scheme' => env('MAIL_SCHEME'),
'url' => env('MAIL_URL'),
2024-03-19 20:13:36 +00:00
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
2020-10-19 19:41:50 +01:00
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
2025-03-01 15:00:41 +00:00
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
2020-10-19 19:41:50 +01:00
],
'ses' => [
'transport' => 'ses',
],
'postmark' => [
'transport' => 'postmark',
2024-03-19 20:13:36 +00:00
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
2023-02-18 09:34:57 +00:00
// 'client' => [
// 'timeout' => 5,
// ],
2020-10-19 19:41:50 +01:00
],
'sendmail' => [
'transport' => 'sendmail',
2022-11-16 20:28:56 +00:00
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
2020-10-19 19:41:50 +01:00
],
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
'array' => [
'transport' => 'array',
],
2022-11-16 20:28:56 +00:00
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
2024-03-19 20:13:36 +00:00
2020-10-19 19:41:50 +01:00
],
2016-05-19 15:01:28 +01:00
/*
|--------------------------------------------------------------------------
| Global "From" Address
|--------------------------------------------------------------------------
|
2024-03-19 20:13:36 +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.
2016-05-19 15:01:28 +01:00
|
*/
2020-10-19 19:41:50 +01:00
2016-09-06 16:40:39 +01:00
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
2016-09-06 16:40:39 +01:00
],
2016-05-19 15:01:28 +01:00
];