Forum Moderators: open
I use a program called ASPEmail to perform email functions from web forms. In my confirmation script, I might have something like this to bring the <title> element variable into the email being sent to the recipient...
Mailer.Subject = request.form("TitleElement") And then I might have something like this written to the body of the email message...
Mailer.BodyText = strMsgHeader & vbCrLf & strRecipName & "," & vbCrLf & vbCrLf & strYourName & " would like you to review this page at the ..." & vbCrLf & vbCrLf & "Page Link: " & strURL & vbCrLf & vbCrLf & "Comments: " & strComments There's more to it than just the above but this should give you an idea. If not, do a search in Google for email this page scripts using asp. You'll find plenty of working examples.