1
votes

How do I add multiple email addresses to the myForward.Recipients.Add bit? I've tried adding them like that "[email protected]; [email protected]; [email protected]",

But only the first one receives the message.

Sub ChangeSubjectForward(Item As Outlook.MailItem)
    Item.Subject = "Test"
 Item.Save

Set myForward = Item.Forward
myForward.Recipients.Add "[email protected]"

myForward.Send

End Sub
2
Can't do myForward.Recipients.Add "[email protected]" and myForward.Recipients.Add "[email protected]" and myForward.Recipients.Add "[email protected]"? Should be able to just add more lines with recipients.Mikegrann

2 Answers

2
votes

Or set the Mailtem.To property to a ";" separated list of addresses.

0
votes

Try adding the following line for each recipient

myForward.Recipients.Add "[email protected]"

myForward.Recipients.Add "[email protected]"

myForward.Recipients.Add "[email protected]"