this is for ASPmail
<body>
<%
T1 = Request.Form("p1"

T2 = Request.Form("p2"
Response.Write "You entered " & T1 & " and " T2 " &
" - is that correct?"
%>
<form name="frm" method="form" action="mailIt.asp">
<input type="hidden" value="<%= T1 %>" name="T1">
<input type="hidden" value="<%= T2 %>" name="T2">
<input type="submit" value="Yes, Submit form">
</form>
</body>
</html>
mailIt.asp
<%
Dim T1, T2
T1 = Request.Form("T1"

T2 = Request.Form("T2"
'everything with the "value" needs to be filled out
DIM Mailer, strMsgHeader
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"

Mailer.FromAddress= "value"
Mailer.RemoteHost = "value"
Mailer.AddRecipient "value"
Mailer.Subject = "value"
strMsgHeader = "value" & vbCrLf & vbCrLf
Mailer.BodyText = strMsgHeader & vbCrLf & "T1: " & T1 & _
vbCrLf & "T2: " & T2
IF Mailer.SendMail THEN
Response.Write "Your message has been successfully sent."
ELSE
Response.Write "The following error occurred while sending your message: " & Mailer.Response
END IF
%>
using CDONTS is very similar
here is how you might do it that way
mailIt.asp
<%
<%
Dim T1, T2
T1 = Request.Form("T1"

T2 = Request.Form("T2"
'everything with the "value" needs to be filled out
set mail=server.CreateObject("CDONTS.NewMail"

mail.From= "value" 'blah.com
mail.To = "value" 'blah@blah.com
mail.Subject = "value" ' form name
mail.Body = "T1: " & T1 & vbCrLf & "T2: " & T2
mail.Send
set mail=nothing
%>
this little bit will send a email but I would get into it more, try here
admin@onpntwebdesigns.com