For users who are still using v2.29, and want to install this hack, I modified a few lines that works for your version of vB.
Changes were made in the member.php, where this line wasn't found in 2.29:
Code:
vbmail($destuserinfo['email'], $subject, $sendmessage, $bbuserinfo['email'], '', $bbuserinfo['username']);
Instead of inserting this:
Code:
$DB_site->query("INSERT INTO usertouserlog (entrytype, fromuserid, touserid, dateline)
VALUES (\"email\", " . $bbuserinfo['userid'] . ", $userid, UNIX_TIMESTAMP())");
Insert this:
Code:
$DB_site->query("INSERT INTO usertouserlog (entrytype, fromuserid, touserid, dateline)
VALUES (\"email\", ". $bbuserinfo['userid'] .", ".$user['userid'].", UNIX_TIMESTAMP())");
After This:
Code:
mail ($user[email],$subject,$message,"From: \"$bbtitle Mailer\" <$webmasteremail>");