I am trying to add multiple email addresses to send an email in Outlook via a Microsoft Exchange Server. I can get it to send using one email address, but I can't figure out the syntax to add a second email address because Outlook doesn't recognize the automated input of the email addresses if they are separated by a semi-colon.
Example that works:
Application.Dialogs(xlDialogSendMail).Show "email1@address.com", "Subject"
Example that doesn't work:
Application.Dialogs(xlDialogSendMail).Show "email1@address.com; email2@address.com", "Subject"
Any suggestions? Thanks!
DJ
Example that works:
Application.Dialogs(xlDialogSendMail).Show "email1@address.com", "Subject"
Example that doesn't work:
Application.Dialogs(xlDialogSendMail).Show "email1@address.com; email2@address.com", "Subject"
Any suggestions? Thanks!
DJ