%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
Click here to view membership information |
|
Click here to join the FCA |
Home Event Calendar Photo Gallery Classifieds Regalia Bollettino Club Business Links Join the FCA Contact Us |
Contact Us - Advertising<% DIM intSection, strError, objMail, strSubject, strRecipients, strBody strError = "" intSection = Request.QueryString("s") IF intSection = "1" THEN IF LEN(TRIM(Request.Form("Name"))) = 0 THEN strError = strError & "Name" IF LEN(TRIM(Request.Form("Email"))) = 0 THEN strError = strError & " Email Address" IF LEN(TRIM(Request.Form("Phone"))) = 0 THEN strError = strError & " Phone Number" IF LEN(TRIM(Request.Form("Comments"))) = 0 THEN strError = strError & " Comments" If Not Request.Form("verify_them")=Request.Form("verify_num") then strError = strError & " Security code entered is not the same as the one displayed. " IF strError <> "" THEN Response.Write "ERROR - Please Go Back and enter the following:" & strError ELSE set objMail = Server.CreateObject("CDO.Message") strSubject = "Advertising Contact from Ferrari Club Website by: " & Request.Form("Name") strRecipients = "westerstartraders@yahoo.com, mondialt@cox.net, allenfaulkner@msn.com, daveb@pacorsouthwest.com, bdssr@aol.com, webmaster@lmg411.com" strBody = "" for i = 1 to Request.Form.Count - 1 strBody = strBody & "" & Request.Form.Key(i) & ": " & Request.Form.Item(i) & " " next objMail.To = strRecipients objMail.From = "advertising_contact@ferrariaz.com" objMail.Subject = strSubject objMail.HTMLBody = " New Advertising Contact from the Ferrari AZ Website!" & strBody objMail.Send Response.Write " Thank you for contacting us!" set objMail = Nothing END IF ELSE %> <% END IF %> |