<% Dim t1name,t1,t2name,t2,t3name,t3,t4name,t4,t5name,t5,t6name,t6,t7name,t7,t8name,t8,t9name,t9,t10name,t10,t11name,t11,t12name,t12 t1name = "Name:" t1 = Request.Form("name") t2name = "Street:" t2 = Request.Form("Street") t3name = "Suburb:" t3 = Request.Form("Suburb") t4name = "Postcode:" t4 = Request.Form("Postcode") t5name = "Telephone:" t5 = Request.Form("Telephone") t6name = "Mobile" t6 = Request.Form("Mobile") t7name = "Fax:" t7 = Request.Form("Fax") t8name = "email:" t8 = Request.Form("email") t9name = "Interested In:" t9 = Request.Form("Service Call") t10name = "Interested In:" t10 = Request.Form("System Pricing") t11name = "Interested In:" t11 = Request.Form("Web Site Design") t12name = "Interested In:" t12 = Request.Form("Web Site Hosting") Dim stname,st stname = "Other Enquiries:" st = Request.Form("Other_Enquiries") Dim ObjMail Set ObjMail = Server.CreateObject("CDONTS.NewMail") ObjMail.To = "thirst@comptroub.com" 'in the next line you can change that email address to something else 'like "myform@myurl.com", just be sure and put it between quotes " " ObjMail.From = "servicerequest@computertroubleshooter.com.au" 'you can also change "Form Submission" to something else like "form results" etc. ObjMail.Subject = "Request for service" ObjMail.Body = t1name & vbcrlf &_ t1 & vbcrlf &_ t2name & vbcrlf &_ t2 & vbcrlf &_ t3name & vbcrlf &_ t3 & vbcrlf &_ t4name & vbcrlf &_ t4 & vbcrlf &_ t5name & vbcrlf &_ t5 & vbcrlf &_ t6name & vbcrlf &_ t6 & vbcrlf &_ t7name & vbcrlf &_ t7 & vbcrlf &_ t8name & vbcrlf &_ t8 & vbcrlf &_ t9name & vbcrlf &_ t9 & vbcrlf &_ t10name & vbcrlf &_ t10 & vbcrlf &_ t11name & vbcrlf &_ t11 & vbcrlf &_ t12name & vbcrlf &_ t12 & vbcrlf &_ stname & vbcrlf &_ st ObjMail.Send Set ObjMail = Nothing 'HERE you make a choice. You can redirect the user to any page in your site Response.Redirect "thanks.html" 'Or just say thanks. Delete the line you dont want. Either above or below %>