Forward attachments from multiple messages in Microsoft Outlook

177 views Asked by At

Having a multiple email messages with one or more attachments in each message, how can I forward all such attachments only (not the messages, just attachments)? I am looking for a simple solution that does not take too much time.

1

There are 1 answers

0
Eric Legault On

Doing this in VBA is fairly straightforward. Use the Explorer.Selection object collection to iterate through the MailItem objects within, and iterate through each MailItem's Attachments collection, using Attachment.SaveAsFile to save each file to disk temporarily. You can then create a new MailItem object and use MailItem.Attachments.Add to add each of the saved files, then call MailItem.Display to show the email.