I tried to get this same effect with the email notifications (those are sort of a dead give-away)...by sticking this code...
Code:
$emailsubject = str_replace('{bbusername}', $bbuserinfo[username], $emailsubject);
$emailmsg = str_replace('{bbusername}', $bbuserinfo[username], $emailsubject);
...before this code...
Code:
mail($toemail,$emailsubject,$emailmsg,"From: \"$bbtitle Mailer\" <$webmasteremail>");
...in
newreply.php. No go, though. What's wrong?