CONTACT US
If you have any questions regarding our services, you can contact us by phone or by filling out this form and we'll get back to you as soon as possible. Hope to hear from you soon.

<% IF request.form("btnSubmit")=1 THEN '--------------------------------- ' Send Email if button is pressed '--------------------------------- 'email data------ Set Mailer = Server.CreateObject("SMTPsvg.Mailer") Mailer.FromName = "DoverTS.com" Mailer.FromAddress = "hostmaster@redolivedesign.com" Mailer.RemoteHost = "mail.redolivedesign.com" Mailer.AddRecipient "Tom", "info@doverts.com" ' Mailer.AddRecipient "heidi", "heidi@heidiuhl.com" Mailer.AddExtraHeader "Reply-To: "& Request.Form("Email") Mailer.ReturnReceipt = false Mailer.ConfirmRead = false Mailer.Subject = "DoverTS.com - Online Contact Form" 'start the message body strMsgHeader = "Here is the information the visitor submitted: " & vbCrLf & vbCrLf strMsgInfo = strMsgInfo & "---------------------" & vbCrLf strMsgInfo = strMsgInfo & "Name: " & Request.Form("your_name")& vbCrLf strMsgInfo = strMsgInfo & "Phone: " & Request.Form("phone")& vbCrLf strMsgInfo = strMsgInfo & "Email: " & Request.Form("email") & vbCrLf strMsgInfo = strMsgInfo & "Found You Where: " & Request.Form("through") & vbCrLf strMsgInfo = strMsgInfo & "---------------------" & vbCrLf strMsgInfo = strMsgInfo & "Comments or Questions: " & vbCrLf strMsgInfo = strMsgInfo & Request.Form("comments")& vbCrLf strMsgInfo = strMsgInfo & "---------------------" & vbCrLf strMsgFooter = vbCrLf & vbCrLf & "-- Submitted: " & NOW()& vbCrLf Mailer.BodyText = strMsgHeader & strMsgInfo & strMsgFooter if Mailer.SendMail then Response.Write" Thank You "&Request.form("Name")&", " Response.Write "your message has been sent.

" Response.Write " We will respond to your request as soon as possible.
" else Response.Write "This form failed for an unknown reason. Please try once more.
" Response.Write Mailer.Response end if ELSE 'show form if not submitted yet %>
Name
Phone
E-Mail
Found Us Where?


Comments/Questions:


  <%END IF 'this goes to btnSubmit check above%>