View Single Post
Old June 27th, 2008, 11:46 PM   #3 (permalink)
patrickb
the one who was
Super #1
 
patrickb's Avatar
 
Joined in Jul 2003
Lives in Memphis
1,967 posts
Gave thanks: 0
Thanked 3 times
PHP Code:
//Mail
$CONFIG['smtp_server']       =    'mail.yourdomain.com';            // replace yourdomain with your real domain
$CONFIG['smtp_port']         =    '25';                             // this is good
$CONFIG['smtp_mail']         =    'user@youremail.com';             // this will most likely be the email address the script sends an email alert to anytime someone requests a password change.  It is helpful to keep an eye out for abuse or suspicious activity.  You may want to setup a special email address in your Cpanel just to receive these emails and enter that email address here
$CONFIG['smtp_username']     =    'username@yourdomain.com';        // this is the username to login to the mail server.  It will be the same thing you use to login and check your email currently.  You may also consider setting up a special email account in Cpanel just to have this script send emails from.
$CONFIG['smtp_password']     =    '<the password to that account>'// the password of email address directly above. 
__________________
Patrick

Warnings: The program(s) might crash unexpectedly or behave otherwise strangely. (But of course, so do many commercial programs on Windows.) --www.gimp.org
patrickb is offline   Reply With Quote
This user thanks patrickb for this great post!
brianluau (June 28th, 2008)