Here is how I approve each new member.
Open register.asp and look for:
'******************************************
'*** Send activate email ***
'******************************************
Dim strEmailApprove
'LETS MAKE THE ADMIN GET IT FIRST
strEmailApprove = "myown@emailaddress.com"
'Inititlaise the subject of the e-mail that may be sent in the next if/ifelse statements
strSubject = "" & strTxtWelcome & " " &
strTxtEmailToThe & " " & strMainForumName
Notice I added strEmailApprove
Now change a few lines down:
strEmailBody = strEmailBody & vbCrLf & vbCrLf & strTxtEmailThankYouForRegistering & " " & strMainForumName & ". - " & strEmail & ""
and
blnSentEmail = SendMail(strEmailBody, decodeString(strUsername), strEmailApprove, strMainForumName, decodeString(strForumEmailAddress), strSubject, strMailComponent, false)
Now registrations will be sent to you and you can copy the emailaddress and forward it if you want to.