Thanks for that ... it almost worked. Pasting where you said didn't work, as strRestrictReg is set to 1 and that code only fires if it is 0.
What I had to do was alter the code to replace the first instance of
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
end if
with the following:
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
elseif strEmail = "1" and strRestrictReg = "1" then
'################################### Administrator Notification Mod ########################
strRecipientsName = strSender
strRecipients = strSender
strFrom = strSender
strFromName = strSender
strsubject = strForumTitle & " Registration "
strMessage = "The new registration of: " & Request.Form("Name") & " (" & Request.Form("Email") & ") has occured at " & strForumTitle & " (" & strForumURL & ")." & vbNewLine & vbNewLine & "Go and check out: " & strForumURL & "admin_accounts_pending.asp to get their full details." & vbNewLine & vbNewLine & "Regards," & vbNewLine & vbNewLine & "Admin @ " & strForumTitle
%>
<!--#INCLUDE FILE="inc_mail.asp" -->
<%
end if
Cheers
Smotsie