 |
Home: Products
Liability
Insurance Forms: Choose which application below that you need
to either print
and fax or submit online.
|
 |
<%if Request.Form("name") = "" then %>
<%else
Set Mailer = Server.CreateObject("SMTPsvg.Mailer")
Mailer.FromName = Request.Form("name")
Mailer.FromAddress= Request.Form("email")
Mailer.RemoteHost = "itoddy.com"
Mailer.Qmessage = "false"
Mailer.AddRecipient ("The Support Team At Broadband Sharing"),("info@broadbandsharing.com")
' enable the following line if you want bcc'd on all emails.
Mailer.AddBCC ("The Support Team At Broadband Sharing"), ("snocera13@hotmail.com")
Mailer.Subject = "you have a request for info from BroadbandSharing"
Mailer.BodyText = Request.Form ("comments")
if Mailer.SendMail then
Response.Write "Mail Sent."
'Response.Redirect "http://www.broadbandsharing.com"
else
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
Set Mailer = Nothing
End If %>
|
 |