Note: You must be registered in order to post a reply. To register, click here. Registration is FREE! Before posting, make sure you have read this topic!
T O P I C R E V I E W
Panhandler
Posted - 26 April 2013 : 09:56:17 Some users will register but never validate their email - usually because the automated email generated by Snitz was blocked by their ISP. The problem arises when the administrator doesn't check to see if there are any new registrations for a month or two.
Is there a mod that will send the forum administrator a "new user notification" email?
3 L A T E S T R E P L I E S (Newest First)
Carefree
Posted - 27 April 2013 : 10:26:47 You're welcome. It's actually a very simple thing to accomplish. The simplest way to do it requires a single change to "register.asp".
Look for the following lines (appx 766-770):
strMessage = strMessage & "You can change your information at our website by selecting the ""Profile"" link." & vbNewline & vbNewline
strMessage = strMessage & "Happy Posting!"
%>
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
After those, insert the following:
' ## Administrator Notification Below
strRecipientsName = strSender
strRecipients = strSender
strFrom = strSender
strFromName = strSender
strsubject = strForumTitle & " Registration "
strMessage = Request.Form("Name") & " (" & Request.Form("Email") & ") has registered at " & strForumURL
%>
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
' ## Administrator Notification Above
Panhandler
Posted - 27 April 2013 : 10:03:06 Cool, I'll give a try. Thank you.
Carefree
Posted - 26 April 2013 : 10:34:16 Yes, someone wrote one a few years ago.