
03-10-2005, 11:21 PM
|
 |
|
|
Join Date: Nov 2004
Location: Helsinki, Finland
Posts: 134
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by culthero
i changed the phrase $vbphrase[pmreceived] in the phrase manager to:
Code:
$touserinfo[username],
You have received a new private message at $vboptions[bbtitle]:
From: $bbuserinfo[username]
Subject:
To reply, click here to log in and read it:
$vboptions[bburl]/private.php
but this can be whatever you want. you just need something to search for in the ereg_replace:
then search private.php for
Code:
vbmail($touserinfo['email'], $emailsubject, $emailmessage);
and ABOVE that line, add the following:
Code:
$emailmessage = ereg_replace ( "Subject:", "Subject: ".$title."\n\n".$message, $emailmessage);
|
Works super - now this is perfect
=M=
|