I'm using CDO Message for a mailing list app. I have a form where the admin
can enter the email header information, subject and the body of the email.
By default, I want to pull in all the email addresses stored in the database
table. I've created a recordset that returns all the records, but how can I
place each email address as a value in the form textarea field, seperated by
a semi-colon?



<textarea name="to" cols="400" rows="2"
id="to"><%=rs.Fields.Item(“email_addy”).Value%></textarea>



Also, how should the form field values be passed into the CDO Message code:



With cdoMessage

Set .Configuration = cdoConfig

..From = Request.Form(“mail_from”)

..To = Request.Form(“mail_to”)

..Subject = Request.Form(“mail_subject”)

..HTMLBody = Request.Form(“mail_body”)

..Send

End With

Thanks for any help.
-D-