Outlook Recipients.Add only allows single email address
Using VBA, Outlook won't let me add more than one Recipient at a time; I cannot do:
objMail.Recipients.Add ("person1@domain1.org; person2@domain2.org; person3@domain3.org")
but then i can do:
objMail.CC = "person1@domain1.org; person2@domain2.org; person3@domain3.org"
objMail.BCC = "person1@domain1.org; person2@domain2.org; person3@domain3.org"
Am i missing something here? How come Recipients does not have the same flexibility as the other "SendTo" fields? How do i get the desired result of multiple e-mail addresses whithout having to add them one at a time?
Thank you!
Llyal
Using VBA, Outlook won't let me add more than one Recipient at a time; I cannot do:
objMail.Recipients.Add ("person1@domain1.org; person2@domain2.org; person3@domain3.org")
but then i can do:
objMail.CC = "person1@domain1.org; person2@domain2.org; person3@domain3.org"
objMail.BCC = "person1@domain1.org; person2@domain2.org; person3@domain3.org"
Am i missing something here? How come Recipients does not have the same flexibility as the other "SendTo" fields? How do i get the desired result of multiple e-mail addresses whithout having to add them one at a time?
Thank you!
Llyal