%
Send = Request("mailme")
firstname = Request("firstname")
lastname = Request("lastname")
company = Request("company")
comment = Request("comment")
email = Request("email")
If Send = "Send" and firstname <> "" and lastname <> ""
and company <> "" and comment <> ""
and email <> ""
Then
Set omail = Server.CreateObject ("CDONTS.NewMail")
omail.Subject = "Comments via Cascadia Web Site"
omail.From = email
omail.Body = Message
omail.send
Response.write "Email sent..."
Response.write "
"
'Response.end
End If
%>
Napsteel - Information Request Form -