below is my asp code for send mail through the form, but when i testing,only the last line of code working that is redirect. can anyone help me to check any error?
<%
' Declare Variables
Dim objNewMail, strFilePath
' Create Instance of NewMail Object
Set objNewMail = Server.CreateObject("CDONTS.NewMail")
' Set Email Priority (1 = Normal)
objNewMail.Importance = 1
' Send plain text email
objNewMail.BodyFormat = 1
' Senders email address
objNewMail.From = request.querystring("name")
' Recipients email address
objNewMail.To = "techsupport@allit.com.my"
' Email Subject
objNewMail.Subject = "enquiry"
' Email Body
objNewMail.Body = request.querystring("enquiry")
' Send Email
objNewMail.Send()
' Destroy object to release it from memory
Set objNewMail = Nothing
response.Redirect("thankyou.htm")
%>