Outlook mail format

Outlook uses a specific format to store and display email messages. Here's an overview of the main components of an Outlook email message format:

Header

Body

Format

Outlook uses a proprietary format called .msg to store email messages. The .msg file contains the following components:

Example

Here's an example of what an Outlook email message might look like in its raw format:

From: John Doe <[email protected]>
To: Jane Smith <[email protected]>
Subject: Test Email
Date: Wed, 12 Jan 2022 14:30:00 +0000
Message-ID: <[email protected]>
References: <[email protected]>

Text:
Hello Jane,

This is a test email.

Best,
John

HTML:
<html>
  <body>
    <p>Hello Jane,</p>
    <p>This is a test email.</p>
    <p>Best,</p>
    <p>John</p>
  </body>
</html>

Attachments:
- attachment1.txt
- attachment2.pdf

Properties:
- Sender: John Doe
- Sender Email: [email protected]
- Recipient: Jane Smith
- Recipient Email: [email protected]

Note that this is a simplified example, and actual Outlook email messages may contain additional components and metadata.