How to: Set an Outlook Rule to Download Attachments to a Folder

970
How to: Set an Outlook Rule to Download Attachments to a Folder

Here we can see, “How to: Set an Outlook Rule to Download Attachments to a Folder”

Users of Outlook frequently need to download files that have been attached to their emails. As a result, it would be convenient if Outlook automatically downloaded all email attachments from newly received emails. With a VBA script and a rule, you can set Outlook to do precisely that.

Also See:  Services.msc Not Opening or Not Responding

What is the best way to set up an Outlook rule to download attachments?

1. Set up the VBA script

  1. To begin, create a VBA script that downloads the attachments to a designated location. The Microsoft Visual Basic window is opened by pressing the Alt + F11 hotkey.
  2. To open a new module window, click Insert and Module.
  3. Copy this VBA code with the Ctrl + C hotkey: Public Sub SaveAttachmentsToDisk(MItem As Outlook.MailItem)
    Dim oAttachment As Outlook.Attachment
    Dim sSaveFolder As String
    sSaveFolder = “C:\Users\DT168\Documents\outlook-attachments”
    For Each oAttachment In MItem.Attachments
    oAttachment.SaveAsFile sSaveFolder & oAttachment.DisplayName
    Next
    End Sub
  4. Use the Ctrl + V hotkey to paste the code into the VBA Module window.
  5. Note that the ‘C:\Users\DT168\Documents\outlook-attachments’ path in that script is an example. Replace ‘C:\Users\DT168\Documents\outlook-attachments’ with the full path of the folder to download the attachments to.
  6. Save the new script after that.
  7. The VBA Module window should now be closed.

2. Create a rule in Outlook for the VBA script

  1. Click the Rules button to create an Outlook rule for the download attachment script.
  2. To launch the Rules and Alerts window, select Manage Rules & Alerts.
  3. To create a new rule, press the New Rule button.
  4. To open the window directly below, select the Apply rule on the message I receive option and click Next. Certain users may need to select the Check messages as they arrive in older Outlook versions.
  5. Check the box to run a script.
  6. To open the Select Script window, click a script.
  7. Click the OK button after selecting the download attachment script in the Select Script window.
  8. Next should be selected.
  9. In the text box on the last Rules Wizard dialogue box, give the rule a title.
  10. Select the option to enable this rule.
  11. You can also select the Run this rule on messages already in the ‘Inbox’ option if you like. According to this rule, the following should be written in the rule description box: Only run macro title> after the message arrives on this computer.
  12. Finish by pressing the Finish button.

Following that, Outlook will download attachments to the folder specified in the script. You won’t have to download the attachments anymore manually. Open File Explorer and navigate to the folder path indicated in the macro to go through the attachments.

Conclusion

I hope you found this guide useful. If you’ve got any questions or comments, don’t hesitate to use the shape below.

User Questions:

1. Is it possible to save email attachments to a folder automatically?

All attachments delivered to your Office 365 inbox will be saved in a Power Automate-created folder called Email attachments. Clicking the “Create Flow” button at the bottom of the screen is all it takes.

2. How do I get Outlook to extract attachments automatically?

  1. Run the software when it has been installed. Navigate to the Open File tab.
  2. As demonstrated in the screenshot, the programme instantly offers a preview of the emails.
  3. Select Extract from the drop-down menu.
  4. To extract attachments from Outlook files, select the mailbox on the left side.

3. How can I download email attachments automatically?

  1. Toggle the button.
  2. Toggle the button.
  3. Tap. Mail. in the. Application Settings. section.
  4. Slide the to download attachments automatically. Set the option “Auto Download Attachments” to “On.”
Also See:  Microsoft Store Closes Immediately After Opening

4. How can I set up an Outlook rule for downloading attachments?

How can I set up an Outlook rule for downloading attachments? from BZFutureFamily

5. Automatically download attachments from specific sender

Automatically download attachments from specific sender and email from Outlook