Site name in emails

This forum is reserved for phpBB3 hacks.

Site name in emails

New postby ~HG~ on Tue Jun 16, 2009 7:40 am

Some administrators would like to have their site name in the email "from" field for emails sent from their forum.

This is easily achieved through the following code changes:

Open includes/functions_messenger.php

Find:

Code: Select all
      $headers[] = 'From: ' . $this->from;


Replace with:

Code: Select all
      $headers[] = 'From: "' . str_replace("&", "&", $config['sitename']) .'" ' . $this->from;


Find:

Code: Select all
      $headers[] = 'Sender: <' . $config['board_email'] . '>';


Replace with:

Code: Select all
      $headers[] = 'Sender: "' . str_replace("&amp;", "&", $config['sitename']) .'" <' . $config['board_email'] . '>';
~HG~
User avatar
~HG~
Site Admin
 
Posts: 22
Joined: Sat Jun 13, 2009 8:33 am
Location: Central Qld

Return to phpBB3 hacks

Who is online

Users browsing this forum: No registered users and 1 guest

cron