第一次使用bugfree:
邮件设置问题
/* 8. Mail setting. */
$_CFG['Mail']['On'] = true;
$_CFG['Mail']['FromAddress'] = "
zzp@192.168.0.13";
$_CFG['Mail']['FromName'] = 'Bug';
$_CFG['Mail']['ReportTo'] = array(); // Where bug statistics message sened to. If empty, to all users.
$_CFG['Mail']['SendMethod'] = 'SMTP'; // MAIL|SENDMAIL|SMTP|QMAIL
/* 9. SMTP param setting. */
$_CFG['Mail']['SendParam']['Host'] = '192.168.0.13'; // The server to connect. Default is localhost
$_CFG['Mail']['SendParam']['SMTPAuth'] = true; // Whether or not to use SMTP authentication. Default is FALSE
$_CFG['Mail']['SendParam']['Username'] = 'zhouzp'; // The username to use for SMTP authentication.
$_CFG['Mail']['SendParam']['Password'] = '888888'; // The password to use for SMTP authentication.
SMTP为公司的
zzp@192.168.0.13为公司邮箱
192.168.0.13为公司服务器地址
zhouzp为SMTP用户名
888888为密码
为什么我这样设置了还不可以呢?