|
Please fill out the form below to Join The CTS Mailing List.
<%
fName = Request.Form("name")
fEmail = Request.Form("email")
fPz = Request.Form("pz")
fUn = Request.Form("un")
If Request.Querystring("form") = "on" then
If ((fName = "Your Name") OR (fName = "")) OR ((fEmail = "Your Email") OR (fEmail = "")) then
Response.Write ""
Else
Set Blast = Server.CreateObject("CDONTS.NewMail")
Blast.To = fEmail
Blast.From = "info@caribbeantoursspecialists.com"
Blast.Subject = "You Joined The Mailing List " & date()
Blast.Body = "Congradulations on joining the CTS Mailing List."
Blast.BodyFormat = 1
Blast.MailFormat = 1
Blast.Send
Set Blast = nothing
formReact = formReact & ""
formReact = formReact & "
You Have Joined The Mailing List!
"
formReact = formReact & " | "
Response.Write (formReact)
End If
Else
Response.Write ""
Response.Write " "
Response.Write " "
Session("pageTitle") = ""
End If
%>
|