MyBB Community Forums

Full Version: Change Email Subject
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to change the email subject for forum notification email. Right now it send :
New Thread in {forum name }

That would lead to sending all emails with same subject. I would rather like the title as the email subject.

How can i achieve that.
No one ? Throught it would be something simple ...
I think function which performs this is in ./inc/datahandlers/post.php and is located about line 1323.
$emailsubject = $lang->sprintf($emailsubject, $forum['name']);

Try replacing this with:
$emailsubject = $lang->sprintf($emailsubject, $thread['subject']);
I haven't tested it but I think that will work.

Remember though that if you make manual code edits you will have to perform these edits every time you upgrade because they will be overwritten.
Perfect!! works super fine.

Appreciate your great help.