当前位置 - 股票行情交易網 - 裝修設計 - bugfree怎樣實現自動發給指派人的郵箱,謝謝幫忙

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並保存後,指派給和抄送給將收到實時郵件通知。可以在“抄送給”編輯框輸入多個用戶帳號或者郵件地址,地址之間用逗號分隔。