photo/config/mail.php

118 lines
3.5 KiB
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
return [
/*
|--------------------------------------------------------------------------
2024-08-25 08:26:29 +00:00
| Default Mailer
2016-06-20 13:35:59 +00:00
|--------------------------------------------------------------------------
|
2024-08-25 08:26:29 +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-06-20 13:35:59 +00:00
|
*/
2024-08-25 08:26:29 +00:00
'default' => env('MAIL_MAILER', 'log'),
2016-06-20 13:35:59 +00:00
/*
|--------------------------------------------------------------------------
2024-08-25 08:26:29 +00:00
| Mailer Configurations
2016-06-20 13:35:59 +00:00
|--------------------------------------------------------------------------
|
2024-08-25 08:26:29 +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.
2016-06-20 13:35:59 +00:00
|
2024-08-25 08:26:29 +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-06-20 13:35:59 +00:00
|
2024-08-25 08:26:29 +00:00
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "resend", "log", "array",
| "failover", "roundrobin"
2016-06-20 13:35:59 +00:00
|
*/
2024-08-25 08:26:29 +00:00
'mailers' => [
'smtp' => [
'transport' => 'smtp',
'url' => env('MAIL_URL'),
'host' => env('MAIL_HOST', '127.0.0.1'),
'port' => env('MAIL_PORT', 2525),
'encryption' => env('MAIL_ENCRYPTION', 'tls'),
'username' => env('MAIL_USERNAME'),
'password' => env('MAIL_PASSWORD'),
'timeout' => null,
'local_domain' => env('MAIL_EHLO_DOMAIN', parse_url(env('APP_URL', 'http://localhost'), PHP_URL_HOST)),
'verify_peer' => false,
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'ses' => [
'transport' => 'ses',
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'postmark' => [
'transport' => 'postmark',
// 'message_stream_id' => env('POSTMARK_MESSAGE_STREAM_ID'),
// 'client' => [
// 'timeout' => 5,
// ],
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'resend' => [
'transport' => 'resend',
],
2019-11-08 12:08:34 +00:00
2024-08-25 08:26:29 +00:00
'sendmail' => [
'transport' => 'sendmail',
'path' => env('MAIL_SENDMAIL_PATH', '/usr/sbin/sendmail -bs -i'),
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'log' => [
'transport' => 'log',
'channel' => env('MAIL_LOG_CHANNEL'),
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'array' => [
'transport' => 'array',
],
2016-06-20 13:35:59 +00:00
2024-08-25 08:26:29 +00:00
'failover' => [
'transport' => 'failover',
'mailers' => [
'smtp',
'log',
],
],
2019-11-08 12:08:34 +00:00
2024-08-25 08:26:29 +00:00
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
2019-11-08 12:08:34 +00:00
],
2024-08-25 08:26:29 +00:00
2019-11-08 12:08:34 +00:00
],
/*
|--------------------------------------------------------------------------
2024-08-25 08:26:29 +00:00
| Global "From" Address
2019-11-08 12:08:34 +00:00
|--------------------------------------------------------------------------
|
2024-08-25 08:26:29 +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.
2019-11-08 12:08:34 +00:00
|
*/
2024-08-25 08:26:29 +00:00
'from' => [
'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
'name' => env('MAIL_FROM_NAME', 'Example'),
],
2016-06-20 13:35:59 +00:00
];