Here's another "how to" for Admins.
When a new user registers at your site, they receive a
very generic "Welcome" Private Message and an email confirming their password.
You can customize these messages with a few simple edits to your language files.
I would recommend customizing the "Welcome" PM to encourage people to complete their profiles and make them aware of things they should take note of on your site. For example, if you have a "newbie" or "getting started" forum, your message might tell them to start there first.
To modify the Welcome Private Message:- Open the /languages/english/adduser.php file (or whatever language you use).
- Look for this line:
$ubbt_lang['WEL_MSG'] = "Welcome to our boards! Please take the time to edit your profile to take full advantage of all of our features.";
- Edit the text between the quotes to whatever you wish.
Tips:
- You may use <br /> to add a line break to the text.
- If you need to use the quote mark (") within the text, you need to escape it out by inserting the \ mark before the quotes in your test string, like this: " Don't do this for the first or the last quote, only quotes within the quotes.

The user also receives a welcome email, which confirms their username and password. You can add a little custom text to this using the same technique.
To modify the Welcome Email Message:This email comes looking something like this:
Someone from the ip address '1.2.3.4.5' registered the Username "testing". The password for this Username is "testing".
Since it inserts variables into the text, the
easiest thing to do, is to add text to the beginning of the message. This is the easiest way without modification to the scripts.
- Open the /languages/english/adduser.php file (or whatever language you use).
- Look for this line:
$ubbt_lang['PASS_BODY1'] = "Someone from the ip address";
- Edit the text between the quotes to whatever you wish.
Tips:
- You may use \n to add a line break to the text.
- If you need to use the quote mark (") within the text, you need to escape it out by inserting the \ mark before the quotes in your test string, like this: " Don't do this for the first or the last quote, only quotes within the quotes.
By customizing these two messages, you can make an extra special first impression on your new users. Hope this helps!
