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
myForward.Recipients.Add "[email protected]"
andmyForward.Recipients.Add "[email protected]"
andmyForward.Recipients.Add "[email protected]"
? Should be able to just add more lines with recipients. – Mikegrann