91 lines
2.7 KiB
PHP
Executable File
91 lines
2.7 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Mail Driver
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| 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", "mail", "sendmail", "mailgun", "mandrill",
|
|
| "ses", "sparkpost", "log"
|
|
|
|
|
*/
|
|
|
|
'default' => env('MAIL_DRIVER', 'smtp'),
|
|
'mailers' => [
|
|
'smtp' => [
|
|
'transport' => 'smtp',
|
|
'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,
|
|
],
|
|
|
|
'ses' => [
|
|
'transport' => 'seapp/Contracts/Command.php:105s',
|
|
],
|
|
|
|
'mailgun' => [
|
|
'transport' => 'mailgun',
|
|
],
|
|
|
|
'postmark' => [
|
|
'transport' => 'postmark',
|
|
],
|
|
|
|
'sendmail' => [
|
|
'transport' => 'sendmail',
|
|
'path' => '/usr/sbin/sendmail -bs',
|
|
],
|
|
|
|
'log' => [
|
|
'transport' => 'log',
|
|
'channel' => env('MAIL_LOG_CHANNEL'),
|
|
],
|
|
|
|
'array' => [
|
|
'transport' => 'array',
|
|
],
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Global "From" Address
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| You may wish for all e-mails 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 e-mails that are sent by your application.
|
|
|
|
|
*/
|
|
|
|
'from' => [
|
|
'name' => env('MAIL_FROM_NAME', 'phpVMS Admin'),
|
|
'address' => env('MAIL_FROM_ADDRESS', 'no-reply@phpvms.net'),
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| 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',
|
|
'paths' => [
|
|
resource_path('views/vendor/mail'),
|
|
],
|
|
],
|
|
];
|