Page 1 of 1

email configuration

Posted: 05 Jun 2010, 19:23
by jdobson
I've configured my $g_from_email several ways now and can't seem to get rid of the "Mantis Bug Tracker" at the beginning. Looking at the raw email header, here's what I see by default:
...
Sender: Mantis Bug Tracker <noreply@example.com>
...
when I set

Code: Select all

$g_from_email = 'foo';
I get:
...
Sender: Mantis Bug Tracker <foo@###.com>
...
Is there any way to control the "title" part of the from email address sender field?

thanks

Re: email configuration

Posted: 06 Jun 2010, 14:43
by atrol
you have to set $g_from_name

Re: email configuration

Posted: 06 Jun 2010, 22:05
by jdobson
yep - that worked. thanks! I guess that should probably get added to the docs.