Thank you dpyers.
2. Display the created page first with a button on it to email the page contents.
In
either event, you need to create a string containing the specific items
you want to email and then use that string as the body of the mail.
In case 2, you'd call a separate asp to grab the information again and format it for an email.
|
I would like to do the 2nd option. But I don't know how to put all the information in a for loop in ASP and send it to the email page.
All I have in the page content is ...
Do While Not rs.eof
response.write rs("fname") & rs("lname")
rs.MoveNext Loop
|
So how do I put each fname and lname into says.. firstname1, firstname2, lastname1, lastname2 and so on and email these nicely?
Thank you again.