<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Web Wiz Support and Community Forums : Require Admin activati&#111;n of new accounts</title>
  <link>https://forums.webwiz.net/</link>
  <description><![CDATA[This is an XML content feed of; Web Wiz Support and Community Forums : Web Wiz Forums : Require Admin activati&#111;n of new accounts]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Mon, 06 Apr 2026 17:44:42 +0000</pubDate>
  <lastBuildDate>Thu, 11 Dec 2003 12:38:30 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.08</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://forums.webwiz.net/RSS_post_feed.asp?TID=8004</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Web Wiz Support and Community Forums]]></title>
   <url>https://forums.webwiz.net/forum_images/web_wiz_forums.png</url>
   <link>https://forums.webwiz.net/</link>
  </image>
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Ok, here it is and this works....]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40801.html#40801</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9554">kl8ton</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 12:38pm<br /><br /><P>Ok, here it is and this works.&nbsp; The activation email goes to the email address specified and it acts as if it is coming from the person registerings email address and puts their real name (if given) in there too.&nbsp; You just have to go in, set their group, click on the activate button and send them an email telling them that they are all set!</P><P>PS I didn't know if i had to do it in the "activate" and the "welcome" section or not, so i did this in both.</P><P>'******************************************<BR>&nbsp;&nbsp;'*** &nbsp;&nbsp;&nbsp; Send activate email&nbsp;&nbsp; &nbsp;***<BR>&nbsp;&nbsp;'******************************************</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Inititlaise the subject of the e-mail that may be sent in the next if/ifelse statements<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strSubject = "" &amp; strTxtWelcome &amp; " " &amp; strTxtEmailToThe &amp; " " &amp; strMainForumName</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'If the members account needs to be activated or reactivated then send the member a re-activate mail a redirect them to a page to tell them there account needs re-activating<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (blnEmailActivation = True AND strMode = "new") OR blnAccountReactivate = True Then</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Send an e-mail to enable the users account to be activated<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Initailise the e-mail body variable with the body of the e-mail<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strTxtHi &amp; " " &amp; decodeString(strUsername)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailThankYouForRegistering &amp; " " &amp; strMainForumName &amp; "."<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtUsername &amp; ": - " &amp; decodeString(strUsername)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; strTxtPassword &amp; ": - " &amp; strPassword<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtToActivateYourMembershipFor &amp; " " &amp; strMainForumName &amp; " " &amp; strTxtForumClickOnTheLinkBelow &amp; ": -"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strForumPath &amp; "/activate.asp?ID=" &amp; Server.URLEncode(strUserCode)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Send the e-mail using the Send Mail function created on the send_mail_function.inc file<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <FONT color=#ff0000>blnSentEmail = SendMail(strEmailBody, decodeString(strUsername), "you@domain.com</FONT><FONT color=#ff0000>", strRealName, decodeString(strEmail), strSubject, strMailComponent, false)</FONT></P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Reset server Object<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; rsCommon.Close<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Set rsCommon = Nothing<BR>&nbsp;&nbsp;&nbsp;adoCon.Close<BR>&nbsp;&nbsp;&nbsp;Set adoCon = Nothing</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Redirect the reactivate page<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If blnAccountReactivate = True Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect("register_confirm.asp?TP=REACT&amp;FID=" &amp; intForumID)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Redirect to the activate page<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Response.Redirect("register_confirm.asp?TP=ACT&amp;FID=" &amp; intForumID)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; End If</P><P><BR>&nbsp;&nbsp;'******************************************<BR>&nbsp;&nbsp;'*** &nbsp;&nbsp;&nbsp; Send welcome email&nbsp;&nbsp; &nbsp;***<BR>&nbsp;&nbsp;'******************************************</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Send the new user a welcome e-mail if e-mail notification is turned on and the user has given an e-mail address<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ElseIf blnEmail = True AND strEmail &lt;&gt; "" AND strMode = "new" Then</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Initailise the e-mail body variable with the body of the e-mail<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strTxtHi &amp; " " &amp; decodeString(strUsername)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailThankYouForRegistering &amp; " " &amp; strMainForumName &amp; "."<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtEmailYouCanNowUseTheForumAt &amp; " " &amp; strWebsiteName &amp; " " &amp; strTxtEmailForumAt &amp; " " &amp; strForumPath<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strEmailBody = strEmailBody &amp; vbCrLf &amp; vbCrLf &amp; strTxtUsername &amp; ": - " &amp; strUsername<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 12:38:30 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40801.html#40801</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Is there a way to put in the stored...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40793.html#40793</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9554">kl8ton</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 11:07am<br /><br />Is there a way to put in the stored admin email address instead of manually typing in an address?&nbsp; I am looking at the report_post.asp because those end up going to the forum admin....can we use the same variable?&nbsp;&nbsp;&nbsp; I really need to get this working today and am trying to help.]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 11:07:08 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40793.html#40793</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Oops. Sorry this code was by micheal.anyways,...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40784.html#40784</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13710">india</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 10:13am<br /><br /><P>Oops. Sorry this code was by micheal.<BR>anyways, plz try changing this</P><P>(str<SPAN class=highlight>Email</SPAN>Body, decodeString(strUsername), decodeString(str<SPAN class=highlight>Email</SPAN>), strMainForumName, <A href="mailto:'you@domain.com&quot;" target="_blank"><FONT color=#ff0000>"you@domain.com"</FONT></A>, strSubject, strMailComponent, false)</P><P>TO str<SPAN class=highlight>Email<BR>to your email address.</SPAN></P><P><SPAN class=highlight>meanwhile, i'll try 2 find out&nbsp;a way<IMG src="https://forums.webwiz.net/smileys/smiley18.gif" border="0"></SPAN></P>]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 10:13:13 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40784.html#40784</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : This did not work for me. I changed...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40773.html#40773</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9554">kl8ton</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 9:30am<br /><br /><P>This did not work for me.&nbsp; I changed the:</P><P>&nbsp;decodeString(strForumEmailAddress) </P><P>to "<A href="mailto:me@domain.com" target="_blank">me@domain.com</A>" and the email address entered during the registration process still gets the activate email.&nbsp; Am I missing something?</P>]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 09:30:17 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40773.html#40773</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : The code change didn&amp;#039;t work....]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40771.html#40771</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14116">gomjabbar</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 9:27am<br /><br />The code change didn't work.&nbsp; The mail is still sent to just the user registering.&nbsp; Any ideas?]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 09:27:16 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40771.html#40771</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Thanks Micheal for the code ]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40751.html#40751</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13710">india</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 8:08am<br /><br />Thanks Micheal for the code]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 08:08:23 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40751.html#40751</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Open register.asp and change the...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40750.html#40750</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=13710">india</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 8:07am<br /><br /><P>Open register.asp and change the code in red<BR><TABLE align=center border=0 cellPadding=0 cellSpacing=0 width="95%"><T><TR><TD class=bold>Code:<BR><TABLE bgColor=#999999 border=0 cellPadding=1 cellSpacing=0 width="100%"><T><TR><TD><TABLE bgColor=#ffffff border=0 cellPadding=2 cellSpacing=0 width="100%"><T><TR><TD class=text style="FONT-FAMILY: Courier New, Courier, mono"><BR>'******************************************<BR>&nbsp;&nbsp;'*** &nbsp;&nbsp;&nbsp; Send activate <SPAN class=highlight>email</SPAN>&nbsp;&nbsp; &nbsp;***<BR>&nbsp;&nbsp;'****************************************** <P></P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'Inititlaise the subject of the e-mail that may be sent in the next if/ifelse statements<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; strSubject = "" &amp; strTxtWelcome &amp; " " &amp; strTxt<SPAN class=highlight>Email</SPAN><SPAN class=highlight>To</SPAN>The &amp; " " &amp; strMainForumName</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'If the members account needs <SPAN class=highlight>to</SPAN> be activated or reactivated then send the member a re-activate mail a redirect them <SPAN class=highlight>to</SPAN> a page <SPAN class=highlight>to</SPAN> tell them there account needs re-activating<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (bln<SPAN class=highlight>Email</SPAN>Activation = True AND strMode = "new") OR blnAccountReactivate = True Then</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Send an e-mail <SPAN class=highlight>to</SPAN> enable the users account <SPAN class=highlight>to</SPAN> be activated<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Initailise the e-mail body variable with the body of the e-mail<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = strTxtHi &amp; " " &amp; decodeString(strUsername)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = str<SPAN class=highlight>Email</SPAN>Body &amp; vbCrLf &amp; vbCrLf &amp; strTxt<SPAN class=highlight>Email</SPAN>ThankYouForRegistering &amp; " " &amp; strMainForumName &amp; "."<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = str<SPAN class=highlight>Email</SPAN>Body &amp; vbCrLf &amp; vbCrLf &amp; strTxtUsername &amp; ": - " &amp; decodeString(strUsername)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = str<SPAN class=highlight>Email</SPAN>Body &amp; vbCrLf &amp; strTxtPassword &amp; ": - " &amp; strPassword<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = str<SPAN class=highlight>Email</SPAN>Body &amp; vbCrLf &amp; vbCrLf &amp; strTxt<SPAN class=highlight>To</SPAN>Activate<SPAN class=highlight>Your</SPAN>MembershipFor &amp; " " &amp; strMainForumName &amp; " " &amp; strTxtForumClickOnTheLinkBelow &amp; ": -"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; str<SPAN class=highlight>Email</SPAN>Body = str<SPAN class=highlight>Email</SPAN>Body &amp; vbCrLf &amp; vbCrLf &amp; strForumPath &amp; "/activate.asp?ID=" &amp; Server.URLEncode(strUserCode)</P><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 'Send the e-mail using the Send Mail function created on the send_mail_function.inc file<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; blnSent<SPAN class=highlight>Email</SPAN> = SendMail(str<SPAN class=highlight>Email</SPAN>Body, decodeString(strUsername), decodeString(str<SPAN class=highlight>Email</SPAN>), strMainForumName, <A href="mailto:'you@domain.com&quot;" target="_blank"><FONT color=#ff0000>"you@domain.com"</FONT></A>, strSubject, strMailComponent, false)<BR></P></TD></TR></T></TABLE></TD></TR></T></TABLE></TD></TR></T></TABLE><BR></P>where the <SPAN class=highlight>email</SPAN> address is <SPAN class=highlight>your</SPAN>s so you get the confirmation <SPAN class=highlight>email</SPAN>s<!-- Signature --><BR><BR>]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 08:07:30 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40750.html#40750</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : I would be interested in this...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40747.html#40747</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=9554">kl8ton</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 7:50am<br /><br />I would be interested in this too.&nbsp; If you check my post I just put out there you will see why I would be interested in this, the admin could tell who the people are and then assign permissions accordingly.&nbsp; Great idea!]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 07:50:10 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40747.html#40747</guid>
  </item> 
  <item>
   <title><![CDATA[Require Admin activati&#111;n of new accounts : Is there a way to send an email...]]></title>
   <link>https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40745.html#40745</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://forums.webwiz.net/member_profile.asp?PF=14116">gomjabbar</a><br /><strong>Subject:</strong> 8004<br /><strong>Posted:</strong> 11&nbsp;December&nbsp;2003 at 7:25am<br /><br />Is there a way to send an email to an admin to approve and active new accounts when they are registered?]]>
   </description>
   <pubDate>Thu, 11 Dec 2003 07:25:38 +0000</pubDate>
   <guid isPermaLink="true">https://forums.webwiz.net/require-admin-activation-of-new-accounts_topic8004_post40745.html#40745</guid>
  </item> 
 </channel>
</rss>