Search found 2 matches

by lloprete
17 Mar 2010, 18:45
Forum: Help
Topic: mantis 1.2.0 and gmail
Replies: 4
Views: 4475

Re: mantis 1.2.0 and gmail

Maybe this could also help you.
I used following script to test sending emails via PHPMailer.

<?php
ini_set("include_path",".:/complete/path/to/your/mantis/core/phpmailer/");

require("class.phpmailer.php");

$mail = new PHPMailer();


$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP ...
by lloprete
17 Mar 2010, 18:39
Forum: Help
Topic: mantis 1.2.0 and gmail
Replies: 4
Views: 4475

Re: mantis 1.2.0 and gmail

Ok,

First of all, it would be nice if you could describe your own experience. eg.:what's the mail notification method chosen, what were the step-by-steps that you already tried, etc..

In my experience, i tried a lot of changes in config_inc.php, but what really solve my issue was updating php ...