mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
20 lines
335 B
PHP
20 lines
335 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'driver' => env('MAIL_DRIVER', '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'),
|
|
|
|
'sendmail' => '/usr/sbin/sendmail -bs',
|
|
|
|
];
|