Page 1 of 1

Can we change notice email from field?

Posted: Wed Aug 22, 2007 9:42 am
by hdbrink
Hi,
Can we change the From field for the notice email sent on new message posts to a custom name, the default is "ftp" but I cannot see a variable in mboard.php where to change this.

thank you
D Brink

Posted: Mon Aug 27, 2007 10:50 am
by Klemen
The default one depends on your PHP settings. What you can do is open mboard.php in a plain text editor and change line 470 from

Code: Select all

mail($settings['admin_email'],'New forum post',$message);
to

Code: Select all

mail($settings['admin_email'],'New forum post',$message, 'From:you@ourdomain.com');