| Contact Us |
 |
Address:
Unit 7, Brown Street
Coatbridge, Scotland
ML5 4AS
Phone:
+44 (0)1236 707 310
Fax:
+44 (0)1236 707 282
Email:
info@adconsultants.co.uk |
 |
|
 |
<%
' Amend the Recipient, Subject and redirected page below.
if (Request.Form("Submit")) = "Send" then
emailmsg = ""
for each thing in request.form
emailmsg = emailmsg & trim(thing) & ": " & trim(request.form(thing)) & vbcrlf
next
set msg = Server.CreateOBject( "JMail.Message" )
msg.Logging = true
msg.silent = false
msg.From = request.form("Email")
msg.AddRecipient "rjc@adconsultants.co.uk" 'Recipient of emailed form
msg.Subject = "Enquiry Form" 'Subject of Email
msg.Body = cstr(EmailMsg)
msg.Send( "www11.redstation.co.uk" ) 'Change this to www2, www3 etc
response.redirect "thanks.htm" 'address of thank you page
end if
%>
|