Adding additional person to get the form replies

F

Fairfield Seniors

I have the following setup. How do I go about adding additional person to
receive the responses?

Part 3: Initialize the email

Dim objMail

Set objMail = Server.CreateObject("CDO.Message")

' Part 4: Populate the email with the values from parts 1 & 2

objMail.From = strFrom
objMail.To = strTo1

objMail.CC = strEmail
objMail.Subject= strSubject
objMail.TextBody = strMessageBody

' Part 5: Send the email
objMail.Send

' Part 6: Clean-up mail object
Set objMail = Nothing
%>

Bill
 
Top