% '================ 'do a quick check to make sure the page is not being hit 'from the outside world (only want to signup people from THIS page) dim error, error_msg, emailexist, chknum, status dim sendto, from, subject, body if (Request.QueryString("submitted") = "true") and (instr(12,Request.ServerVariables("HTTP_REFERER"),"/mailout.asp") > 12) then 'if everything is cool, then do ya stuff 'Response.Write(instr(1,Request.ServerVariables("HTTP_REFERER"),"/mailout.asp")) 'Response.Write("yera!") '==================== 'do a quick check on the email addy 'Response.Write(ValidEmail(Request.Form("emailaddy"))) if not ValidEmail(Request.Form("emailaddy")) then error = true error_msg = error_msg & "
|
<% if status = "unsubed" then %> You have successfully unsubscribed from the ..::LvL mailout. <% elseif status = "subed" then %>You have successfully subscribed to the ..::LvL mailout. A confirmation email will soon turn-up in your <%=Request.Form("emailaddy")%> in-box. This email will have information on how to *unlock* your subscription. (its just a security check to stop spammers and junk accounts) <% elseif error then Response.Write("There was an error processing your request.
The ..::LvL mailout is sent out with every update. Each one will give you a quick run-down on the maps that have been added. To subscribe just enter your vaild email address below.
To unsubscribe (for whatever reason) just select unsubscribe before you hit the submit button :] Your email address is held in the ..::LvL database - it is safe from spam. Your email address will NOT be sold to anyone. You can remove yourself at any time from the list by accessing this web page. Any question or concerns can be sent to <%=tig_mail%> <% end if %> |
|