bugfree怎样实现自动发给指派人的邮箱,谢谢帮忙

在安装过程或者通过编辑protected/config/main.php文件可以启用邮件通知功能。例如,修改如下SMTP服务器信息。

'mail' => array(

'on' => '1',

'from_address' => "bugfree-noreply@taobao.com",

'from_name' => 'BugFree',

'send_method' => 'SMTP', //MAIL|SENDMAIL|SMTP|QMAIL

'send_params' => array(

'host' => 'yourmailhost', // The server to connect. Default is localhost

'smtp_auth' => false, // Whether or not to use SMTP authentication. Default is FALSE

'username' => '', // The username to use for SMTP authentication.

'password' => '' // The password to use for SMTP authentication.

)

)

BugFree可以实时和定时发送邮件通知。在新建Bug或Test Case并保存后,指派给和抄送给将收到实时邮件通知。可以在“抄送给”编辑框输入多个用户帐号或者邮件地址,地址之间用逗号分隔。