修改邮件配置
This commit is contained in:
parent
dd87964ad7
commit
0541138063
|
@ -1,31 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* Local Configuration Override
|
||||
*
|
||||
* This configuration override file is for overriding environment-specific and
|
||||
* security-sensitive configuration information. Copy this file without the
|
||||
* .dist extension at the end and populate values as needed.
|
||||
*
|
||||
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
||||
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
||||
* credentials from accidentally being committed into version control.
|
||||
*/
|
||||
|
||||
return array(
|
||||
'config' => array(
|
||||
'host' => 'smtp.126.com',
|
||||
'hostname' => 'smtp.126.com',
|
||||
'username' => 'sjydata@126.com',
|
||||
'password' => 'xiningpwd126',
|
||||
'port' => 994,
|
||||
'ssl' => 'tls',
|
||||
'auth' => 'login',
|
||||
'name' => '青海省生态综合数据网' //发件人
|
||||
),
|
||||
'template'=> array(
|
||||
'register' => 'member-register', //注册
|
||||
'getPwd' => 'users-changepassword', //找回密码
|
||||
'pwdChanged' => 'users-password-changed', //用户的密码被修改(前后台通用)
|
||||
|
||||
)
|
||||
);
|
||||
<?php
|
||||
/**
|
||||
* Local Configuration Override
|
||||
*
|
||||
* This configuration override file is for overriding environment-specific and
|
||||
* security-sensitive configuration information. Copy this file without the
|
||||
* .dist extension at the end and populate values as needed.
|
||||
*
|
||||
* @NOTE: This file is ignored from Git by default with the .gitignore included
|
||||
* in ZendSkeletonApplication. This is a good practice, as it prevents sensitive
|
||||
* credentials from accidentally being committed into version control.
|
||||
*/
|
||||
|
||||
return array(
|
||||
'config' => array(
|
||||
'host' => 'smtp.exmail.qq.com',
|
||||
'hostname' => 'smtp.exmail.qq.com',
|
||||
'username' => 'service@qherc.org',
|
||||
'password' => 'qherc@123',
|
||||
'port' => 465,
|
||||
'ssl' => 'ssl',
|
||||
'auth' => 'login',
|
||||
'name' => '青海省生态综合数据网' //发件人
|
||||
),
|
||||
'template'=> array(
|
||||
'register' => 'member-register', //注册
|
||||
'getPwd' => 'users-changepassword', //找回密码
|
||||
'pwdChanged' => 'users-password-changed', //用户的密码被修改(前后台通用)
|
||||
|
||||
)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue