How to save mails in outlook to desktop

There are a few ways to save emails from Outlook to your desktop:

Method 1: Using the "Save As" option

  1. Open the email you want to save in Outlook.
  2. Click on the "File" menu and select "Save As" (or press Ctrl+S).
  3. In the "Save As" dialog box, select "Desktop" as the location.
  4. Choose a file name and select a file type (e.g., ".eml" or ".msg").
  5. Click "Save" to save the email to your desktop.

Method 2: Using the "Export" feature

  1. Open the email you want to save in Outlook.
  2. Click on the "File" menu and select "Export" (or press Ctrl+Shift+E).
  3. In the "Export" dialog box, select "Export to a file" and choose "Email" as the file type.
  4. Select "Desktop" as the location and choose a file name.
  5. Click "Export" to save the email to your desktop.

Method 3: Using a third-party add-in

There are several third-party add-ins available that allow you to save emails from Outlook to your desktop. Some popular options include:

To install a third-party add-in, follow these steps:

  1. Go to the add-in's website and download the installation file.
  2. Run the installation file and follow the prompts to install the add-in.
  3. Once installed, open Outlook and go to the "Add-ins" tab in the ribbon.
  4. Click on the "Manage Add-ins" button and select "Go" to open the "Add-ins" dialog box.
  5. Check the box next to the add-in you installed and click "OK" to enable it.

Method 4: Using a script

You can also use a script to save emails from Outlook to your desktop. Here's an example of a VBA script that you can use:

  1. Open the Visual Basic Editor in Outlook by pressing Alt+F11 or by navigating to the "Developer" tab in the ribbon and clicking on the "Visual Basic" button.
  2. In the Visual Basic Editor, create a new module by clicking on "Insert" > "Module" (or press Alt+F11).
  3. Paste the following code into the module:
    Sub SaveEmail()
     Dim olApp As New Outlook.Application
     Dim olMail As Outlook.MailItem
     Set olMail = olApp.CreateItem(0)
     olMail.Body = "This is a test email"
     olMail.SaveAs "C:\Desktop\Email.eml"
     Set olMail = Nothing
     Set olApp = Nothing
    End Sub
  4. Replace the email body with the actual email you want to save.
  5. Save the module by clicking on "File" > "Save" (or press Ctrl+S).
  6. To run the script, click on the "Run" button (or press F5) in the Visual Basic Editor.

Note: The script above saves the email as an EML file. You can modify the script to save the email as a MSG file by changing the file extension to ".msg".