questioning regarding e-mail function on forms

L

Lauren B.

To have an e-mail automatically open when a checkbox is clicked, I have the
event procedure set to:

DoCmd.Send Object , , , "e-mail address" , , , "Subject" , "Text" , True

I need to have an e-mail open with three e-mail addresses in the To: line.
I attempted to separate the e-mail addresses by commas but received an
error. How can I write the code so that my e-mail has multiple recipients?

Thank you for any assistance.
 
C

Chris Reveille

Try using semiquotes
"e-mail address;e-mail address2;e-mail address3"

Chris
 
Top