<% If Request("Send") <> "" Then Set Mail = Server.CreateObject("Persits.MailSender") Mail.Host = "209.252.100.110" Mail.From = Request("From") ' From address Mail.FromName = Request("FromName") ' optional Mail.AddAddress "lou@eandj.com" Mail.Subject = "Web Estimate" Mail.Body = Request("Body") strErr = "" bSuccess = False On Error Resume Next ' catch errors Mail.Send ' send message If Err <> 0 Then ' error occurred strErr = Err.Description else bSuccess = True End If End If %>

ESTIMATE
To receive an estimate from us on work that has already
been quoted by another facility please fill out the form below:


Name:
E-Mail:
Phone Number:
Fax Number:
Make:
Model:
Year:
Service needed:


 
 

<% If strErr <> "" Then %>

I am sorry but an error has occurred.
Please call 773-588-6631. <% = strErr %> <% End If %> <% If bSuccess Then %> Your Request Was Successfully. <% End If %>