Mantis bug跟踪器没有发送重置密码电子邮件?

时间:2013-10-09 09:50:22

标签: php xampp mantis

在mantis bugs tracker中,当我创建新用户并按下Reset Password按钮时,它无法向用户发送重置密码电子邮件!为什么??

或者,是否有任何配置使其发送重置密码电子邮件?

这是我的电子邮件配置:

$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = 'root';
$g_allow_signup    = ON;  
$g_enable_email_notification = ON; 
$g_phpMailer_method = PHPMAILER_METHOD_SMTP;
$g_smtp_host = 'smtp.gmail.com';
$g_send_reset_password=ON;
$g_smtp_connection_mode = 'tls';
$g_smtp_port = 587;
$g_from_email= 'Waseelac@gmail.com';
$g_smtp_username = 'Waseelac@gmail.com'; //replace it with your gmail address
$g_smtp_password = '******'; //replace it with your gmail password
$g_administrator_email = 'mohammad.hasan@waseela-net.com';

1 个答案:

答案 0 :(得分:0)

这是因为谷歌要求你使用SSL几周。因此,将connection_mode更改为ssl并将端口更改为465。