This is possible. You just need to go into the registration files and change the email recipient to the Forum Email Address instead of the user who just registered.
Locate the following code in register.asp
'******************************************
'*** Send activate email ***
'******************************************
.....
code
.....
code
.....
Change only the red part to the modified blue part:
'Send the e-mail using the Send Mail function created on the send_mail_function.inc file
blnSentEmail = SendMail(strEmailBody, decodeString(strUsername), decodeString(strEmail), strMainForumName, decodeString(strForumEmailAddress), strSubject, strMailComponent, false)
Change to:
'Send the e-mail using the Send Mail function created on the send_mail_function.inc file
blnSentEmail = SendMail(strEmailBody, decodeString(strUsername), decodeString(strForumEmailAddress), strMainForumName, decodeString(strForumEmailAddress), strSubject, strMailComponent, false)
Also in resend_email_activation.asp
'Send the e-mail using the Send Mail function created on the send_mail_function.inc file
blnSentEmail = SendMail(strEmailBody, decodeString(strLoggedInUsername), decodeString(strLoggedInUserEmail), strMainForumName, decodeString(strForumEmailAddress), strSubject, strMailComponent, false)
Change to:
'Send the e-mail using the Send Mail function created on the send_mail_function.inc file
blnSentEmail = SendMail(strEmailBody, decodeString(strLoggedInUsername), decodeString(strForumEmailAddress), strMainForumName, decodeString(strForumEmailAddress), strSubject, strMailComponent, false)
Should work. Backup your files before doing the edit.
