测试积点老人 发表于 2018-12-19 13:31:55

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

在php.ini文件中修改

SMTP = smtp.qq.com
smtp_port = 465
sendmail_from = 你的QQ@qq.com
sendmail_path =你的QQ@qq.com

要使用SSL,继续修改php.ini
extension=php_openssl.dll

修改config_defaults_inc.php
$g_administrator_email = '你的QQ@qq.com';
$g_webmaster_email = '你的QQ@qq.com';
$g_from_email = '你的QQ@qq.com';
$g_return_path_email = '你的QQ@qq.com';
$g_enable_email_notification = ON;
$g_mail_priority = 3;
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.qq.com';
$g_smtp_username = '你的QQ@qq.com';
$g_smtp_password = '密码';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;

最后测试邮件
http://Mantis路径/admin/test_email.php





页: [1]
查看完整版本: Mantis邮件配置(v1.2.19版本。验证可用)