-
Written By
Rohit Singh -
Updated on
April 21st, 2025 -
Read Time
8 minutes
Retrieving and managing attachments containing essential documents and multimedia files is of utmost necessity. However, navigating the process of downloading these attachments from Outlook might seem complex at first glance. Fear not! We’ll guide you through a simple, step-by-step approach to download attachments from Outlook inbox using the Outlook Backup Tool.
It is vital to exercise caution when downloading attachments and to use reliable antivirus software to scan for potential threats. Be careful when opening attachments from unknown or untrusted sources to keep your computer safe from cyber threats. You should be vigilant and cautious to prevent any potential security risks. In fact, local access to attachments enables users to collaborate and edit files more conveniently.
The below-mentioned steps will help you efficiently download and save multiple attachments from Outlook on your Mac. Remember to select the desired location to download attachments from Outlook on Mac to access later.
Or
The following section will help users to download attachments from Outlook 365 using Power Automate.
Note: You can modify the flow settings manually or set it for automatic execution based on your preferences.
This process automates the download of attachments from incoming emails in a specified Outlook folder. It stores them directly in a designated location in SharePoint, streamlining your workflow and ensuring efficient file management.
Public Sub Download_Attachments()
‘If execute in excel, for sample.
‘ADD ‘Tools > References… Microsoft Outlook 16.0 Object Library
On Error GoTo Err_Control
Dim OutlookOpened As Boolean
Dim outApp As Outlook.Application
Dim outNs As Outlook.Namespace
Dim outFolder As Outlook.MAPIFolder
Dim outAttachment As Outlook.Attachment
Dim outItem As Object
Dim DestinationFolderName As String
Dim saveFolder As String
Dim outMailItem As Outlook.MailItem
Dim inputDate As String, subjectFilter As String, sFolderName As String
Dim FSO As Object
Dim SourceFileName As String, DestinFileName As String
Set FSO = CreateObject(“Scripting.FileSystemObject”)
Set FSO = CreateObject(“Scripting.Filesystemobject”)
sFolderName = Format(Now, “yyyyMMdd”)
sMailName = Format(Now, “dd/MM/yyyy”)
DestinationFolderName = “C:\Users\agonzalezp\Documents\Automatizaciones”
saveFolder = DestinationFolderName & “\” & sFolderName
subjectFilter = “NUEVA” & ” ” & sMailName ‘REPLACE WORD SUBJECT TO FIND
OutlookOpened = False
On Error Resume Next
Set outApp = GetObject(, “Outlook.Application”)
If Err.Number <> 0 Then
Set outApp = New Outlook.Application
OutlookOpened = True
End If
On Error GoTo Err_Control
If outApp Is Nothing Then
MsgBox “Cannot start Outlook.” vbExclamation
Exit Sub
End If
Set outNs = outApp.GetNamespace(“MAPI”)
Set outFolder = outNs.GetDefaultFolder(olFolderInbox)
If Not outFolder Is Nothing Then
For Each outItem In outFolder.Items
If outItem.Class = Outlook.OlObjectClass.olMail Then
Set outMailItem = outItem
If InStr(1, outMailItem.Subject, subjectFilter) > 0 Then ‘removed the quotes around subjectFilter
For Each outAttachment In outMailItem.Attachments
If Dir(saveFolder, vbDirectory) = “Then FSO.CreateFolder (saveFolder)
outAttachment.SaveAsFile saveFolder & ” – ” & outAttachment.fileName
Set outAttachment = Nothing
Next
End If
End If
Next
End If
SourceFileName = “C:\Users\agonzalezp\Documents\Automatizaciones\*.xlsx”
DestinFileName = saveFolder
FSO.MoveFile SourceFileName, DestinFileName
If OutlookOpened Then outApp.Quit
Set outApp = Nothing
Err_Control:
If Err.Number <> 0 Then
‘MsgBox Err.Description
End If
End Sub
The script will now automatically download attachments from emails that match the specified conditions (like subject keywords) and save them in the designated folder. Also, any new incoming emails meeting these criteria will have their attachments automatically saved.
Note: Be mindful that in the latest versions of Outlook, there might be slight variations in menu options or settings. Therefore, carefully follow the steps and adjust accordingly.
This process simplifies attachment downloads by automating the task, saving you time and effort in managing attachments within your Outlook emails.
Read: Save Outlook Emails as PDF
By following these steps, you can easily save multiple attachments from an email in Outlook by using the “Save all Attachments” option.
Outlook Backup Tool is a top-notch and efficient utility. It helps users to download attachments from Outlook. Moreover, users get the preview feature before the saving process. In fact, you can also opt for additional features to make the conversion process more easier. Additionally, this software offers an easy-to-understand and self-intuitive Graphical User Interface. Now, we will learn how to save your attachments from your bulky emails.
By following these straightforward steps, downloading attachments from Outlook becomes a hassle-free process. Moreover, it empowers you to manage your files efficiently and focus on your tasks. Outlook’s user-friendly interface is just the beginning. With a range of powerful features that can be tailored to your specific needs, Outlook is the ultimate tool for managing your email, calendar, and contacts. Whether you’re using the latest version or an older one, you’ll find that Outlook is the perfect way to stay organized and on top of your game. Feel free to explore different solutions to download attachments from Outlook to further optimize your workflow.
Related Post