Hey A,
You bet, it is very similiar to Jmail and I'm sure CDonts. Heres what you do.
First off you have someone fill out a form. Then it's a cool thing to send the form results to a confirmation page.
a "this is what you put in" type of thing.
Put this below your recordset and modify to fit your needs.
+++++++++++++
<%
Dim strTitle
Dim strFirst_Name
Dim strLast_Name
Dim strAddress
Dim strCity
Dim strState
Dim strZip
Dim strHomePhone
Dim strWorkPhone
Dim strEMail
Dim strStock
Dim strVIN
Dim strColor
Dim strTrim
Dim strModelName
Dim strModelNumber
strTitle = rsSubmitConfirm.Fields.Item("Title"

.Value
strFirst_Name = rsSubmitConfirm.Fields.Item("First_Name"

.Value
StrLast_Name = rsSubmitConfirm.Fields.Item("Last_Name"

.Value
strAddress = rsSubmitConfirm.Fields.Item("Address"

.Value
strCity = rsSubmitConfirm.Fields.Item("City"

.Value
strState = rsSubmitConfirm.Fields.Item("State"

.Value
strZip = rsSubmitConfirm.Fields.Item("Zip"

.Value
strHomePhone = rsSubmitConfirm.Fields.Item("Home_Phone"

.Value
strWorkPhone = rsSubmitConfirm.Fields.Item("Work_Phone"

.Value
strEMail = rsSubmitConfirm.Fields.Item("Email"

.Value
strStock = rsSubmitConfirm.Fields.Item("Stock"

.Value
strVIN = rsSubmitConfirm.Fields.Item("VIN"

.Value
strColor = rsSubmitConfirm.Fields.Item("Color"

.Value
strTrim = rsSubmitConfirm.Fields.Item("Trim"

.Value
strModelName = rsSubmitConfirm.Fields.Item("ModelName"

.Value
strModelNumber = rsSubmitConfirm.Fields.Item("ModelNumber"

.Value
strLocation = rsSubmitConfirm.Fields.Item("Location"

.Value
%>
<%
Set Mailer = Server.CreateObject("SMTPsvg.Mailer"

Mailer.FromName = "Anything works here"
Mailer.FromAddress= "youremail@yourdomain.com"
Mailer.RemoteHost = "yourSMTP@yourdomain.com"
Mailer.AddRecipient strRecipient
Mailer.Subject = "Subject Line"
Mailer.BodyText = "Top Body Text"
Mailer.BodyText = ""
Mailer.BodyText = "More Body Text"
Mailer.BodyText = ""
Mailer.BodyText = "More Body Text"
Mailer.BodyText = "Title - " & strTitle
Mailer.BodyText = "First_Name - " & strFirst_Name
Mailer.BodyText = "Last_Name - " & strLast_Name
Mailer.BodyText = "Address - " & strAddress
Mailer.BodyText = "City - " & strCity
Mailer.BodyText = "State - " & strState
Mailer.BodyText = "Zip - " & strZip
Mailer.BodyText = "Home Phone - " & strHomePhone
Mailer.BodyText = "Work Phone - " & strWorkPhone
Mailer.BodyText = "Email Address - " & strEMail
Mailer.BodyText = "Stock # - " & strStock
Mailer.BodyText = "Model Number - " & strModelNumber
Mailer.BodyText = "Model Name - " & strModelName
Mailer.BodyText = "Trim - " & strTrim
Mailer.BodyText = "VIN # - " & strVIN
Mailer.BodyText = "Color - " & strColor
Mailer.BodyText = "Location -" & strLocation
if Mailer.SendMail then
Response.Write "Mail sent..."
else
Response.Write "Mail send failure. Error was " & Mailer.Response
end if
%>
+++++++++++++++++++
Obviously your fields will change. But you can see the path. Up top we do strXXXXXXXXXX = the form field name.
Then you call that strXXXXXXXX in the email section.
Hollar if you run into problems :-0 "If you feel a post has been helpful to you, click on the link at the bottom of their post to cast a vote for "TipMaster Of The Week". You don't need to be the one who asked the question to vote"
Stuart