• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Use VBA to open Outlook messages stored in the file system

Slipstick Systems

› Developer › Use VBA to open Outlook messages stored in the file system

Last reviewed on February 13, 2018     30 Comments

An Outlook user posted a question in Outlook Forums:

I need to open Outlook messages stored in a specific folder, and then get the attachments from those Outlook items.

You can do this. You need to use Windows Scripting Host and Outlook's Application.CreateItemFromTemplate to open the messages. Once open, you can save the attachments or do whatever you need to do to the message.

To use this macro, paste the macro in a module, then set a reference to Microsoft Scripting Runtime in the VB Editor's Tools, References dialog box.

Set a reference to the scripting runtime

You'll need to enter the folder path where the MSG files are stored to the GetMSG macro. The folder where you want to save the attachments is stored in strFolderpath in the ListFilesInFolder macro.

Click in GetMSG and press F5 or Run to use the macro.

This code is not Outlook-specific (except for the code between the two Set openMsg lines) and can be used with Word or Excel.


Sub GetMSG()
' True includes subfolders
' False to check only listed folder
   ListFilesInFolder "E:\My Documents\", True
End Sub


Sub ListFilesInFolder(SourceFolderName As String, IncludeSubfolders As Boolean)
    Dim FSO As Scripting.FileSystemObject
    Dim SourceFolder As Scripting.Folder, SubFolder As Scripting.Folder
    Dim FileItem As Scripting.File
    Dim strFile, strFileType, strAttach As String
    Dim openMsg As MailItem

Dim objAttachments As Outlook.Attachments
Dim i As Long
Dim lngCount As Long
Dim strFolderpath As String

'where to save attachments
strFolderpath = "E:\My Documents\attachments\"
    
    Set FSO = New Scripting.FileSystemObject
    Set SourceFolder = FSO.GetFolder(SourceFolderName)
    
    For Each FileItem In SourceFolder.Files
    
    strFile = FileItem.name
      
' This code looks at the last 4 characters in a filename
' If we wanted more than .msg, we'd use Case Select statement
strFileType = LCase$(Right$(strFile, 4))
  If strFileType = ".msg" Then
    Debug.Print FileItem.Path
    
Set openMsg = Application.CreateItemFromTemplate(FileItem.Path)
openMsg.Display
    'do whatever
    
Set objAttachments = openMsg.Attachments
    lngCount = objAttachments.count
         
    If lngCount > 0 Then
     
    For i = lngCount To 1 Step -1
     
    ' Get the file name.
    strAttach = objAttachments.Item(i).FileName
     
    ' Combine with the path to the Temp folder.
    strAttach = strFolderpath & strAttach
     
    ' Save the attachment as a file.
    objAttachments.Item(i).SaveAsFile strAttach
     
    Next i
    End If
  openMsg.Close olDiscard
  
Set objAttachments = Nothing
Set openMsg = Nothing

' end do whatever
      End If
    Next FileItem
    If IncludeSubfolders Then
        For Each SubFolder In SourceFolder.SubFolders
            ListFilesInFolder SubFolder.Path, True
      Next SubFolder
    End If
    
    Set FileItem = Nothing
    Set SourceFolder = Nothing
    Set FSO = Nothing
     
End Sub

How to use the macro

First: You will need macro security set to low during testing.

To check your macro security in Outlook 2010 or 2013, go to File, Options, Trust Center and open Trust Center Settings, and change the Macro Settings. In Outlook 2007 and older, it’s at Tools, Macro Security.

After you test the macro and see that it works, you can either leave macro security set to low or sign the macro.

Open the VBA Editor by pressing Alt+F11 on your keyboard.

To put the code in a module:

  1. Right click on Project1 and choose Insert > Module
  2. Copy and paste the macro into the new module.

More information as well as screenshots are at How to use the VBA Editor

More Information

Accessing Files with FileSystemObject

Use VBA to open Outlook messages stored in the file system was last modified: February 13th, 2018 by Diane Poremsky
Post Views: 138

Share this:

  • Share on Facebook (Opens in new window) Facebook
  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Mastodon (Opens in new window) Mastodon
  • Email a link to a friend (Opens in new window) Email

Related Posts:

  • Import Messages from File System into Outlook Folders
  • Save and Open an Attachment using VBA
  • Save Messages and Attachments to a New Folder
  • Browseforfolder_2
    How to use Windows File Paths in a Macro

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Sweta Kumari says

    June 14, 2020 at 8:45 am

    How to send the email which are displayed...I am getting file path access error.

    Reply
  2. Benny says

    September 18, 2017 at 8:31 am

    Hi Diane, i have a problem when load an message create with a personal module. When it is load I don't find custom property . This is the example:
    Dim milk as MailItem
    Set mi = Application.CreateItemFromTemplate("c:\miaMail.msg")
    Dim par as string
    Par = mi.ItemProperties.Item("MIAPROPRIETA").value

    But ItemProperties don't have item. Why?
    Thank.

    Reply
  3. Premanshu Basak says

    March 15, 2017 at 9:33 am

    Hi Diane,

    First of all thank you so much for this piece of code which has helped me a lot in one automation that I am working on. However I am stuck at a place where instead of opening the mail message with ".Display" I want to do a "Reply All". When I try to do that I get an error saying "Run time error '-2147352567 (80020009)': Could not send the message".

    Kindly help me with this please. I am using Excel 2013 to run this code.

    Regards,
    Premanshu

    Reply
    • Diane Poremsky says

      March 16, 2017 at 12:17 am

      when you open the message using the code, it should be appear as a new message draft, so no need to reply all - it's ready to send.

      Reply
  4. Tash says

    January 25, 2017 at 9:03 pm

    Thank you for the code and it works well, however when the email msg is displayed only the attachments are shown. I wish to extract the attachments and then save the email without attachments to my local drive. Thank you and any assistance is welcome.

    Reply
    • Diane Poremsky says

      January 25, 2017 at 10:13 pm

      After saving the attachments, you need to delete them. objAttachments.Item(i).Delete

      I have a code sample here - https://www.slipstick.com/developer/code-samples/delete-attachments-messages/

      Reply
    • Tash says

      January 26, 2017 at 5:09 pm

      Thank you for your quick response. I am not having issues removing the attachments. Once the attachments have been removed I am trying to save the email. The problem seems to be in in "Set openMsg = Application.CreateItemFromTemplate(FileItem.Path)
      openMsg.Display" - when this is activated the email opens without any body viewable thus when saving the email it is saved without the body of the email. Again thank you for your time and assistance

      Reply
      • Diane Poremsky says

        March 16, 2017 at 12:57 am

        How are you removing the attachments? Can you still see the body after they are removed?

  5. Scott says

    June 24, 2016 at 5:15 am

    This works amazingly!!! Thanks you very much for this. I was wondering if it would be possible to save the attachments as the subject line of the emails they were contained within rather than the names they already have?

    Reply
    • Diane Poremsky says

      June 24, 2016 at 11:37 pm

      you'd change the file name -
      ' Get the file name.
      strAttach = objAttachments.Item(i).FileName
      to strAttach = openMsg.Subject

      if you have a problem with illegal characters in the subject, there is a function at the end of the macro at https://www.slipstick.com/developer/code-samples/save-messages-and-attachments-in-a-new-folder/ that can be used with this macro to strip the characters.

      Reply
  6. Jazz says

    May 25, 2016 at 2:30 am

    Hello Diane,
    I would like an email that i move to draft to automatically open.
    If file is already open then it can disregard rule.

    Is there a way to do this?

    Reply
    • Diane Poremsky says

      June 24, 2016 at 11:39 pm

      you can use an itemadd macro to watch the drafts folder and display messages that are added to it but I'm not sure about how complicated it would be to skip messages already open.

      Reply
  7. meir rotfleisch says

    April 27, 2016 at 7:25 am

    Hi Diane,

    I have code that saves an email from inside Access VBA to the file system. When I use the Set Msg = objOL.CreateItemFromTemplate(thisfile) I get an error saying the file is open or you don't have permission ..

    I have tried this with outlook being open and being closed still not able to access the msg.

    Looking forward to your response

    Reply
  8. Eric Bussen says

    October 7, 2014 at 10:24 am

    Diane,

    They are .msg files not meeting requests. They have .pdf attachments. The .msg files are however custom forms and perhaps this is why the script is failing.

    You mention that I might not have Outlook properly referenced. How would this be done. I set the reference you stated above regarding Microsoft scripting runtime. I even checked all the other ones you have checked in the example above thinking that might help. Still a fail. I appreciate the assistance and hope you have a good morning. Thanks,

    Reply
    • Diane Poremsky says

      October 8, 2014 at 1:56 am

      Are you running the macro from Excel? You need to dim and set Outlook.Application - I'm sure you've done that because you'd get an error about an undefined object otherwise.

      it's possible the custom form is the problem. I'll try to look into it in the morning.

      Reply
  9. Eric Bussen says

    October 6, 2014 at 12:10 pm

    Greetings Diane,

    I am trying to use this macro and have followed all your instructions. I get an error message that says Run-time error '438' Object doesn't support this property or method and the debugger highlights this line,

    Set openMsg = Application.CreateItemFromTemplate(FileItem.Path)

    I am trying to run this using Excel 2010 and the folders I am using for the .msg files and for the attachments are both on my C drive. I have spent considerable time trying to find the answer on my own, but to no avail. Any suggestions for cause and solution would be greatly appreciated. Thanks!!

    Reply
    • Diane Poremsky says

      October 7, 2014 at 10:12 am

      Is the message an email message? If it's a meeting request or a report (read receipt, NDR etc) it won't work.

      Or, if you are using this with Excel, you don't have Outlook properly referenced. It's not quite the right error for a reference problem though.

      Reply
    • Marcus says

      March 9, 2015 at 7:32 pm

      Since you're running from Excel, add "Outlook.":

      Set openMsg = Outlook.Application.CreateItemFromTemplate(FileItem.Path)

      Reply
  10. Charles Andrew says

    August 22, 2014 at 4:04 pm

    When I run the code I get the follow error.
    Type run-error '13" Type Mismatch.

    The line of code is:
    Set openMsg = Application.CreateItemFromTemplate(FileItem.Path)

    This appears to happen when the folder getting parsed has a delivery confirmation attached to the .msg file.

    Any suggestion as to what might be causing this?

    Thank you

    Reply
    • Diane Poremsky says

      August 22, 2014 at 10:26 pm

      it's a delivery confirmation message? Reports are not mailitems - if you want to import them, use Dim openMsg As object or use an if statement to test the item type. Something like
      If TypeOf obj Is Outlook.mailItem Then
      'do the stuff
      end if

      Reply
      • Charles Andrew says

        August 22, 2014 at 10:29 pm

        Typo, sorry. It's a delivery confirmations.

      • Diane Poremsky says

        August 22, 2014 at 10:59 pm

        Dang, i can't spell tonight. :) change the object that reference the mailitem to object or use the if statement to get only mail.

  11. Pradeep Kumar says

    May 17, 2014 at 8:07 am

    Hello Diane,

    can you give me code to extract files from a password protected zip file stored in hard drive folder to same folder. i have password with with, but i want to automate the process from click of button

    Reply
    • Diane Poremsky says

      May 17, 2014 at 9:05 pm

      Unfortunately, I haven't worked with password protected zip files and don't have any code samples. Does your zip program support passing the password in a command line? That would be the first requirement.

      Reply
  12. Pradeep Kumar says

    May 12, 2014 at 11:37 pm

    thanks a lot. ok can you give me code leaving excell aside

    Reply
    • Diane Poremsky says

      May 13, 2014 at 12:43 am

      I don't have any code samples, other than for the url I posted earlier, sorry.

      Reply
  13. Pradeep Kumar says

    May 11, 2014 at 11:56 pm

    Hello Diana,

    I want to ask you something. I have a folder on my computer with email from outlook with attachments. i want to open these emails one by one save email body as pdf with a specific name from a excell file then save attachments either pdf or word or html into pdf with file name from excell again (to a new folder with name from excell), then move to next mail folder. there is a need to open every converted file to pdf.

    Reply
    • Diane Poremsky says

      May 12, 2014 at 1:01 am

      it's possible, but i don't have any code samples that use an excel file to provide the file names. See https://www.slipstick.com/developer/code-samples/save-outlook-email-pdf/ to save the messages as pdf.

      Reply
  14. Julie Andersen says

    January 30, 2014 at 12:27 pm

    Diane, Your knowledge is really in depth! I appreciate your articles so much. I'm looking for a way to print a custom calendar, with the day's calendar on the left, and task WITH START AND END DATES, sorted by end date, on the right. Can you help?

    Reply
    • Diane Poremsky says

      February 1, 2014 at 4:23 pm

      What version of Outlook? The Calendar Printing Assistant should be able to do that.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 8

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Deleting Auto-Complete Entries No Longer Works
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • How to Hide or Delete Outlook's Default Folders
  • Reset the New Outlook Profile
  • Removing Suggested Accounts in New Outlook
  • Disable "Always ask before opening" Dialog
  • Contacts are missing when you click the To button
  • Change Outlook's Programmatic Access Options
  • Adjusting Outlook's Zoom Setting in Email
  • Deleting Auto-Complete Entries No Longer Works
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Deleting Auto-Complete Entries No Longer Works

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

VBA Basics

How to use the VBA Editor

Work with open item or selected item

Working with All Items in a Folder or Selected Items

VBA and non-default Outlook Folders

Backup and save your Outlook VBA macros

Get text using Left, Right, Mid, Len, InStr

Using Arrays in Outlook macros

Use RegEx to extract message text

Paste clipboard contents

Windows Folder Picker

Custom Forms

Designing Microsoft Outlook Forms

Set a custom form as default

Developer Resources

Developer Resources

Developer Tools

VBOffice.net samples

SlovakTech.com

Outlook MVP David Lee

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.