E-MAIL, where do I set the host?

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
mATOK

E-MAIL, where do I set the host?

Post by mATOK »

Hi there, I am trying to get e-mail notifications up and running.

I have another script on my server where I use phpmailer.. it looks like this

require("class.phpmailer.php");
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "Exchange.blahblah.com"; // SMTP server

I'd like to know where I can set this "host" globaly within Mantis, or in which exact files I need to make this setting.

I have installed mantis-1.0.0rc3.tar.gz

Thank you very much
Guest

Post by Guest »

fixed by adding

$g_phpMailer_method = 2;
$g_smtp_host = ' ';

to my config_inc.php
Post Reply