| 123456789101112131415161718192021222324252627282930313233343536373839404142 | <?php/** * FecShop file. * * @link http://www.fecshop.com/ * * @copyright Copyright (c) 2016 FecShop Software LLC * @license http://www.fecshop.com/license/ */return [    'email' => [        /*        'mailerConfig' => [            // 默认通用配置            'default' => [                'class'     => 'yii\swiftmailer\Mailer',                'transport' => [                    'class'       => 'Swift_SmtpTransport',                    'host'        => 'smtp.qq.com',            //SMTP Host                    'username'    => '2420577683@qq.com',   //SMTP 账号                    'password'    => 'shrlkrtqsokwebjh',    //SMTP 密码                    'port'        => '587',                    //SMTP 端口                    'encryption'  => 'tls',                ],                'messageConfig'=> [                   'charset'=> 'UTF-8',                ],            ],        ],        'childService' => [            'customer' => [                //注册账户是否需要邮件激活                'registerAccountIsNeedEnableByEmail'  => false,                                 //注册账户激活邮件的token的过期时间(秒),只有当 registerAccountIsNeedEnableByEmail 为true的时候有效。	                            'registerAccountEnableTokenExpire' => 86400,            ],        ],        */    ],];
 |