<% end if %> Complete the form below to contact us. We will try and respond to your enquiry within 12 hours.
<% else if request.form("name")="" or request.form("email")="" then%>
Error : you must enter an email address and / or a name before an email can be sent. Please press the back button on your browser and enter an email address. <%else%>
Thank you, your message has now been sent.
<%
email=killemailChars(request.form("email"))
name=killemailChars(request.form("name"))
sendersubject=killemailChars(request.form("sendersubject"))
message=killemailChars(request.form("message"))
mesbody="Message from : " & email & "
Name : " & name &"
" & message & "
"
Set newmail = server.CreateObject ("CDO.Message")
newmail.from = "info@go-sail.co.uk"
newmail.to = "info@ellipsedesign.co.uk"
newmail.subject = sendersubject
newmail.HTMLBody = mesbody
newmail.send
Set newmail = Nothing
end if%>
Thank you, your email has been sent. We will get back to you as soon as possible.
<%end if%>