Mantis邮件配置(v1.2.19版本。验证可用)

在php.ini文件中修改

[mail function] 
SMTP = smtp.qq.com 
smtp_port = 465  
sendmail_from = 你的[email protected] 
sendmail_path =你的[email protected]

要使用SSL,继续修改php.ini

extension=php_openssl.dll

修改config_defaults_inc.php 

$g_administrator_email = '你的[email protected]'; 
$g_webmaster_email = '你的[email protected]'; 
$g_from_email = '你的[email protected]'; 
$g_return_path_email = '你的[email protected]'; 
$g_enable_email_notification = ON; 
$g_mail_priority = 3; 
$g_phpMailer_method = PHPMAILER_METHOD_SMTP; 
$g_smtp_host = 'smtp.qq.com';
$g_smtp_username = '你的[email protected]';
$g_smtp_password = '密码';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;

最后测试邮件

http://Mantis路径/admin/test_email.php

Mantis邮件配置(v1.2.19版本。验证可用)_第1张图片

你可能感兴趣的:(mantis,Mantis邮件,Mantis邮件配置,MantisQQ邮箱)