I don't mean to sound dense, but..
what?
I did a little digging, and I see that it shows up in a couple of files within the template:
pmsg.php: send_email($GLOBALS['NOTIFY_FROM'], $email, '['.$GLOBALS['FORUM_TITLE'].'] New Private Message Notification', 'You have a new private message titled "'.$subject.'" from "'.$from.'" on the "'.$GLOBALS['FORUM_TITLE'].'" forum.\nTo view the message click here: index.php/pmv/'.$pid.'/'.$pfx.'\n\nTo stop future notifications, disable "Private Message Notification" in your profile.');
pmsg_view.php: send_email($GLOBALS['NOTIFY_FROM'], $email, '['.$GLOBALS['FORUM_TITLE'].'] New Private Message Notification', 'You have a new private message titled "'.$subject.'" from "'.$from.'" on the "'.$GLOBALS['FORUM_TITLE'].'" forum.\nTo view the message click here: index.php/pmv/'.$pid.'/'.$pfx.'\n\nTo stop future notifications, disable "Private Message Notification" in your profile.');
ppost.php: send_email($GLOBALS['NOTIFY_FROM'], $email, '['.$GLOBALS['FORUM_TITLE'].'] New Private Message Notification', 'You have a new private message titled "'.$subject.'" from "'.$from.'" on the "'.$GLOBALS['FORUM_TITLE'].'" forum.\nTo view the message click here: index.php/pmv/'.$pid.'/'.$pfx.'\n\nTo stop future notifications, disable "Private Message Notification" in your profile.');
thr_exch.php: send_email($GLOBALS['NOTIFY_FROM'], $email, '['.$GLOBALS['FORUM_TITLE'].'] New Private Message Notification', 'You have a new private message titled "'.$subject.'" from "'.$from.'" on the "'.$GLOBALS['FORUM_TITLE'].'" forum.\nTo view the message click here: index.php/pmv/'.$pid.'/'.$pfx.'\n\nTo stop future notifications, disable "Private Message Notification" in your profile.');
Shouldn't those files have the line like:
send_email($GLOBALS['NOTIFY_FROM'], $email, '['.$GLOBALS['FORUM_TITLE'].'] New Private Message Notification', 'You have a new private message titled "'.$subject.'" from "'.$from.'" on the "'.$GLOBALS['FORUM_TITLE'].'" forum.\nTo view the message click here: '.$GLOBALS['WWW_ROOT'].'index.php/pmv/'.$pid.'/'.$pfx.'\n\nTo stop future notifications, disable "Private Message Notification" in your profile.');
Or am I missing something here?