If you'd like a brochure
or DVD, please call us to request one on (02)
9722 0502.
If you would rather email us we are at info@rackarmour.com.au.
If you need to send us a fax, please do on (02)
9728 6665.
If you would like to view or order a Rack Armour
Demonstration video, please click
here.
If you would like to receive our e-newsletter,
distributior pack, information pack, or
would just like to place an enquiry - please fill
in your details below:
|
|
|
<%
Set Mail = Server.CreateObject("SMTPsvg.Mailer") 'create an Asp mail component.
Mail.FromName = "form1"
Mail.FromAddress= Request.Form("email")
Mail.RemoteHost = "mrvnet.kundenserver.de" ' The mail server you have to use with Asp Mail
Mail.AddRecipient "chabrisloire@aol.com"
Mail.Subject = "Gite Booking"
Mail.BodyText = Request.Form("yourname")
Mail.BodyText = Request.Form("email")
Mail.BodyText = Request.Form("datearrive")
Mail.BodyText = Request.Form("datedepart")
Mail.BodyText = Request.Form("booking")
if Mail.SendMail then
Response.Write "Your mail has already been sent..."
else
Response.Write "Mail send failure. Error was " & Mail.Response
end if
Set Mail = Nothing
%>
|