1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- /* 邮箱服务配置 */
- return array (
- 'default' => 'smtp',
- 'mailers' =>
- array (
- 'smtp' =>
- array (
- 'transport' => 'smtp',
- 'host' => 'smtp.163.com',
- 'port' => '465',
- 'encryption' => 'ssl',
- 'username' => 'chengchen202209@163.com',
- 'password' => 'KYWUVVJALAQUYQDF',
- 'timeout' => 10,
- 'auth_mode' => NULL,
- ),
- 'ses' =>
- array (
- 'transport' => 'ses',
- ),
- 'mailgun' =>
- array (
- 'transport' => 'mailgun',
- ),
- 'postmark' =>
- array (
- 'transport' => 'postmark',
- ),
- 'sendmail' =>
- array (
- 'transport' => 'sendmail',
- 'path' => '/usr/sbin/sendmail -bs',
- ),
- 'log' =>
- array (
- 'transport' => 'log',
- 'channel' => NULL,
- ),
- 'array' =>
- array (
- 'transport' => 'array',
- ),
- ),
- 'from' =>
- array (
- 'address' => 'chengchen202209@163.com',
- 'name' => '星链社区',
- ),
- 'markdown' =>
- array (
- 'theme' => 'default',
- 'paths' =>
- array (
- 0 => '/usr/local/develop/php/www/waibao/NN2024010801/NN2024010801/resources/views/vendor/mail',
- ),
- ),
- );
- ?>
|