%if request.form("add") = "yes" then
BodyText = "Dear Manager
"
BodyText = BodyText&"A Suggestion has been submitted by "&request.form("firstname")&" "&request.form("lastname")&"
"
BodyText = BodyText&" Email: "&request.form("Email")&"
"
BodyText = BodyText&" Suggestion: "&request.form("suggestion")&"
"
Dim MyMail
Set MyMail = Server.CreateObject("CDONTS.NewMail")
MyMail.From = "customerservices@forcesnoticeboards.com"
MyMail.To = "glenfranklin@forcesnoticeboards.com"
MyMail.Subject = "Website Suggestion"
MyMail.Body = BodyText
MyMail.BodyFormat = 0
MyMail.MailFormat = 0
MyMail.Send
Set MyMail = Nothing
response.redirect "suggestion-box.asp?done=yes"
end if%>
Especially as this is a new site and it is your site, please feel free to let us know of any aspect we can improve upon or section we can add.
Any ideas that are used will earn a 10 voucher. Note: only the first person suggesting the idea qualifies.
Thank you for submitting your suggestion. A member of our staff will endeavour to get back to you with a response as soon as possible.
<%else%>Please complete the below form to register your suggestion with us
<%end if%>