File: D:/web/itpartnership/emailer/negotiationpower.asp
<!--#include virtual="/common/asp/inc-email.asp"-->
<html>
<head>
</head>
<body>
<%
OpenEmail "HTML", 35
AddToEmail "","<b>Negotiation Power - Web Enquiry:</b><br><br>"
AddToEmail "Full Name", Request.Form("Name")
AddToEmail "Company", Request.Form("Company")
AddToEmail "Telephone", Request.Form("Tel")
AddToEmail "Email Address", Request.Form("Email")
AddToEmail "Enquiry", Request.Form("Enquiry")
SetFromAddress "info@negotiationpower.co.uk"
SendEmail "Negotiation Power - Contact Form / Website Enquiry", "mark.bartrick@silverbulletassociates.com", ",", ","
If GetErrorMessage = "" Then
Response.Redirect("http://www.negotiationpower.co.uk/thankyou.htm")
Else
Response.Redirect("http://www.negotiationpower.co.uk/error.htm")
End If
%>
</body>
</html>