mfacer
09-22-2003, 10:00 PM
hey,
I have been looking for literally hours for this hack, but had no luck.... so I have used some old code and modified it to work.... so, here is what I did for vB version 2.3.2:
in register.php find the following code: (about line 570)
eval("standardredirect(\"".gettemplate("redirect_registerthanks")."\",\"".iif(strpos($url,"register")>0,"index.php?s=$session[sessionhash]",$url)."\");");
(btw... I have guessed at the vb code and php markers.. cos the WYSIWYG editor kept giving me errors when I used the buttons!)
then right above, put:
//send an email to the new user
eval("\$message = \"".gettemplate("welcomeemail")."\";");
eval("\$subject = \"".gettemplate("welcomeemailsubject")."\";");
vbmail ($email,$subject,$message);
then in the vB admin, create a new template and call it "welcomeemail" and put something like:
Dear $username,
Welcome our Forums!
message goes here!
Kind Regards,
Your Team
note the single line returns, cos when the email was sent, it put double lines in..?!
then create another template called "welcomeemailsubject" and put something like
Welcome to our Forum!
upload the register.php file and bobs your uncle.... it works!! :)
(hopefully)!!!
Hope it works for others!
Matt Facer
(mfacer)
I have been looking for literally hours for this hack, but had no luck.... so I have used some old code and modified it to work.... so, here is what I did for vB version 2.3.2:
in register.php find the following code: (about line 570)
eval("standardredirect(\"".gettemplate("redirect_registerthanks")."\",\"".iif(strpos($url,"register")>0,"index.php?s=$session[sessionhash]",$url)."\");");
(btw... I have guessed at the vb code and php markers.. cos the WYSIWYG editor kept giving me errors when I used the buttons!)
then right above, put:
//send an email to the new user
eval("\$message = \"".gettemplate("welcomeemail")."\";");
eval("\$subject = \"".gettemplate("welcomeemailsubject")."\";");
vbmail ($email,$subject,$message);
then in the vB admin, create a new template and call it "welcomeemail" and put something like:
Dear $username,
Welcome our Forums!
message goes here!
Kind Regards,
Your Team
note the single line returns, cos when the email was sent, it put double lines in..?!
then create another template called "welcomeemailsubject" and put something like
Welcome to our Forum!
upload the register.php file and bobs your uncle.... it works!! :)
(hopefully)!!!
Hope it works for others!
Matt Facer
(mfacer)