Page 7 of 7

Re: Please read this if you have problems with emails

Posted: 30 Jan 2020, 15:42
by s_h
the testmail.php send mail successfully. but the mantis system not send any mail. how can i see why?

Re: Please read this if you have problems with emails

Posted: 25 Jul 2020, 10:42
by danielgrant007
Hi ,
I ve tried to configure email for our company mantis bug tracker but I m unable to get emails. I ve done the same exact setup, what could be the issue, Where do I specify the email subject and body and all?
Thanks

Re: Please read this if you have problems with emails

Posted: 29 Jul 2020, 11:47
by danielgrant007
I have been implemented all shown method including the testmail.php.
here testmail.php when it running in the brower is loading and showing blank page but not sending any mails.
Even i had made changes in the xampp/php/php.ini and xampp/sendmail/sendmail.ini as shown in the xampp tutorial.
please help me out of this issue.

Re: Please read this if you have problems with emails

Posted: 01 Nov 2020, 10:33
by tomeczekstecc
Hi.

I'm looking for some help. I just can't get email notification work. No error - juast no email delivery.

I don't use XAMPP/WAMPP i I gost this app on Digital Ocean's Droplet Ubuntu 18.04. My config_inc.php are as follows:
$g_allow_signup = ON;
$g_enable_email_notification = ON;
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.gmail.com';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
$g_from_email = 'tom******@gmail.com';
$g_smtp_username = 'tom******@gmail.com';
$g_smtp_password = '"***************';
$g_administrator_email = 'tom******@gmail.com';
$g_email_receive_own = ON;
$g_allow_blank_email = ON;
$g_email_send_using_cronjob = OFF;
$g_log_level = LOG_EMAIL | LOG_EMAIL_RECIPIENT | LOG_LDAP;;

I tried everything in this issue but no result. Thanks for any help

Re: Please read this if you have problems with emails

Posted: 04 Apr 2021, 09:04
by shubharora734
I'm using IIS 7 for my mantis 1.2.5 and I can't make the email work I did the settings you suggests but there are no emails been sent for the signup account.
boi hrms
teatv

Re: Please read this if you have problems with emails

Posted: 11 Nov 2021, 09:30
by Maska+
Hello everyone, first of all, thank this community for all the information and help they give us to be able to use Mantis.

We have a small problem, and that is that since always, we have been able to use Mantis and send emails, except when a user requests that their password be reset because they have lost it. The email that should reach the user does not reach them, however the emails of the incidents and the creations of new users arrive perfectly.

We have the domain hosted on Google. Mantis version 1.2.0 and works on Linux

Thanks.

Re: Please read this if you have problems with emails

Posted: 09 Sep 2023, 11:46
by doverkan
I have Mantis Bug Tracker v2.25.7 with this config for email:

$g_allow_signup = ON;
$g_enable_email_notification = ON;
$g_phpMailer_method = 2;
$g_smtp_host = 'smtp.xxxx.com';
$g_smtp_connection_mode = 'ssl';
$g_smtp_port = 465;
$g_from_email = 'support@xxx.com';
$g_smtp_username = 'support@xxx.com';
$g_smtp_password = 'PASSWORD';
$g_administrator_email = 'support@xxx.com';
$g_email_receive_own = ON;
$g_allow_blank_email = ON;
$g_email_send_using_cronjob = OFF;

I have tried different ports, different sending methods and there is no way for it to send any email. From what I see it is a common problem in mantis

Re: Please read this if you have problems with emails

Posted: 28 Mar 2024, 02:03
by HerrimanCoder
In the original post there is testmail.zip, which contains 1 file: testmail.php. And testmail.php has a dependency to Mail.php, which is not supplied. Certain I was being careless, I scoured this post for any mention of Mail.php. The only mention I found of it was from rancor1223, whose script blew up because of the missing dependency.

Why post an example zip with a missing dependency? According to rancor, others have had this same problem. Why not correct this? Please help. Thanks in advance.