Trying to exclude sender when recipients hit Reply All, in Excel generated Outlook email.
I have:
I think I can do:
But how do I do that without listing specific emails, e.g. "email2@email.com; email3@email.com", but instead make it so that whatever addresses are in To and CC fields, will be included, but not the sender?
I have:
VBA Code:
EmailItem.To = "email2@email.com"
EmailItem.CC = "email3@email.com"
I think I can do:
Code:
EmailItem.ReplyRecipients.Add "email2@email.com; email3@email.com"
But how do I do that without listing specific emails, e.g. "email2@email.com; email3@email.com", but instead make it so that whatever addresses are in To and CC fields, will be included, but not the sender?