Yes the email was filled in ok.
Yes POST only....
<form action="/gnrlfeedback/send.asp" name = ContactUs
onsubmit="return validate_form(this)"
method="post">
<URL to Formhtm>
<CODE for Send.asp>
<%@ Language=VBScript %>
<%
Dim objMail
Dim crlf
Dim strBody
crlf = Chr(10) & Chr(13)
Set objMail = CreateObject("CDONTS.NewMail")
objMail.From = "ContactUs"
objMail.To= "email@sample.com"
objMail.Subject= Request.Form("AFS Contact Us Form")
strBody = "Name: " & Request.Form("Name") & crlf
strBody = strBody & "Company: " & Request.Form("Company") & crlf
strBody = strBody & "Title: " & Request.Form("Title") & crlf
strBody = strBody & "Street: " & Request.Form("Street") & crlf
strBody = strBody & "City: " & Request.Form("City") & crlf
strBody = strBody & "State: " & Request.Form("State") & crlf
strBody = strBody & "Zip: " & Request.Form("Zip") & crlf
strBody = strBody & "Phone: " & Request.Form("Phone") & crlf
strBody = strBody & "Fax: " & Request.Form("Fax") & crlf
strBody = strBody & "Email: " & Request.Form("Email") & crlf
strBody = strBody & "Helicopter(s)in Use: " & Request.Form("Helicopter") & crlf
strBody = strBody & "General Comments: " & Request.Form("Comments") & crlf
objMail.Body= strBody
objMail.Send
Set objMail = Nothing
Response.Write "Message sent. Redirecting to confirmation page."
Response.Redirect "
%>