bugfree 3.0.3 메일 알림 설정

1350 단어 free
설치 과정 또는 편집을 통해protected/config/main.php 파일은 메일 알림 기능을 사용할 수 있습니다.예를 들어, 다음과 같은 SMTP 서버 정보를 수정합니다.
 
    'mail' => 
    array (
      'on' => '1',
      'from_address' => '[email protected]', // 。
      'from_name' => 'BugFree',//
      'send_method' => 'SMTP',
      'send_params' => 
      array (
        'host' => 'smtp.126.com',
	// The server to connect. Default is localhost。
	// , bugfree ,
	// , 126, stmp.126.com
        'smtp_auth' => true,
	//Whether or not to use SMTP authentication. 
	//Default is FALSE。 true
        'username' => '[email protected]',
	//The username to use for SMTP authentication.// 
        'password' => '123',  
	//The password to use for SMTP authentication.// 
      ),
    ),
  ),
 
 
BugFree는 실시간 및 정시에 메일 알림을 보낼 수 있습니다.Bug 또는 Test Case를 새로 만들고 저장한 후 에 할당하고 베껴 보내면 실시간 메일 알림이 표시됩니다."베끼기"편집 상자에 여러 사용자 계정이나 메일 주소를 입력할 수 있으며, 주소 사이는 쉼표로 구분됩니다.

좋은 웹페이지 즐겨찾기