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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top