|

Thanks for your submission!
Our Staff will be in contact with you.
You will receive an email copy of this submission.
Symmetrical Technologies
|
<%
Dim Email, From, SendTo, Subject, Message, Ticket, Priority
From = Trim(Request.Form("Email"))
SendTo = "angel-amaral@cox.net" & "; " & Request("email")
Subject = "Symmetrical Technologies "
Name = Trim(Request.Form("name"))
Company = Trim(Request.Form("company"))
'Rank = Trim(Request.Form("rank"))
Phone = Trim(Request.Form("phone"))
'Office = Trim(Request.Form("office"))
'Room = Trim(Request.Form("room"))
'Priority = Trim(Request.Form("priority"))
'Comment = Trim(Request.Form("comment"))
Message = Request("message")
Priority = 1
If (From <> "" And Message <> "") Then
Set Email = Server.CreateObject("CDONTS.NewMail")
Email.Send From, SendTo, Subject, Message, Priority
Set Email = Nothing
'Response.Write "You have successfully submitted this Trouble Ticket. Thank you!"
'Else
'Response.Write "You have NOT filled out all fields completely."
'Response.Redirect("HTTP://wadsweb.mcchord.af.mil/")
'End If
%>
|