Sending Emails to Multiple Addresses

G

Guest

I have the following code that opens up my Lotus Notes so I can confirm or
add to the email message and then send to one person:

Private Sub RFQNo_AfterUpdate()

DoCmd.SendObject acSendNoObject, , acFormatTXT, "(e-mail address removed)", ,
, "Changes made", "some text here", True

End Sub

I'd like to send a message to several email address at once. How do I add
additional email addresses?

I've experimented with several guesses and haven't hit on the answer.
 
G

Guest

Nanette,

according to the help for this method:
"Separate the recipient names you specify in this argument and in the cc
and bcc arguments with a semicolon (;) "

Therfore I believe you can simply modify your code like

DoCmd.SendObject acSendNoObject, , acFormatTXT,
"(e-mail address removed);[email protected];[email protected]", , ,
"Changes made", "some text here", True

Daniel
 

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

Top