ive sent emails using classic ASP. You could sub in the textbox values from a post action.
here's the email asp script that i wrote
Code:
<% Option Explicit %>
<% Dim MyEmail
Set MyEmail = Server.CreateObject("CDONTS.NewMail")
MyEmail.From = "tsimpkins@whooha.com"
MyEmail.To = ""
MyEmail.Subject = "Update WF Database"
MyEmail.Body = "Tara has requested for you to update the WF Database."
MyEmail.Send
Set MyEmail = Nothing
response.write "email sent"
%>
<input type="button" onclick="window.back()">