English Support Forum

icon
Avatar
skimberley
Posts: 3
Hi,
I need the contact form to be sent to both the site administrator and the item owner (or a copy of the message to be stored onsite). Is any of this possible?

Thanks
11.02.2010 14:28
Avatar
admin
Moderator
Posts: 887
Hi,

open misterestate.php with your favorite editor and add the following code below line 657.

iconCode:
$query = "SELECT email FROM #__users WHERE id=62 OR username='admin'";
$db->setQuery($query);
$row = $db->loadObject();
		
mail($row->email,$subject,$mail_body,$header);


best regards
05.03.2010 03:48
icon