Save outlook email as eml

There are a few ways to save an Outlook email as an EML file:

Method 1: Using Outlook's built-in feature

  1. Open the email you want to save as an EML file in Outlook.
  2. Click on the "File" menu and select "Save As".
  3. In the "Save As" dialog box, select "EML" as the file type.
  4. Choose a location to save the file and click "Save".

Method 2: Using Outlook's export feature

  1. Open the email you want to save as an EML file in Outlook.
  2. Go to the "File" menu and select "Open & Export".
  3. Select "Export to a file" and then choose "EML" as the file type.
  4. Choose a location to save the file and click "Export".

Method 3: Using a third-party add-in

There are several third-party add-ins available that allow you to save Outlook emails as EML files. One popular option is "Export Outlook Emails" by Encryptomatic.

  1. Install and configure the add-in according to the manufacturer's instructions.
  2. Open the email you want to save as an EML file in Outlook.
  3. Click on the add-in's button in the Outlook ribbon and select "Export to EML".

Method 4: Using VBA scripting

If you're comfortable with VBA scripting, you can use the following code to save an Outlook email as an EML file:

Sub SaveEmailAsEML()
    Dim olApp As New Outlook.Application
    Dim olMail As Outlook.MailItem
    Dim filePath As String

    Set olMail = olApp.CreateItem(0)
    olMail.Body = "This is a test email"
    olMail.SaveAs "C:\Path\To\Email.eml", olEml

    Set olMail = Nothing
    Set olApp = Nothing
End Sub

Replace "C:\Path\To\Email.eml" with the desired file path and name.

Note: The above code is just an example and may need to be modified to suit your specific needs.