在安装过程或者通过编辑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并保存后,指派给和抄送给将收到实时邮件通知。可以在“抄送给”编辑框输入多个用户帐号或者邮件地址,地址之间用逗号分隔。

相关文章:

  • 2022-12-23
  • 2021-12-30
  • 2021-07-21
  • 2021-04-17
  • 2021-09-17
  • 2021-08-21
  • 2021-11-11
猜你喜欢
  • 2021-11-05
  • 2022-12-23
  • 2021-04-26
  • 2021-05-03
  • 2021-08-14
  • 2022-12-23
相关资源
相似解决方案