Skip to content
← Guides

How to export Outlook email to PDF

Published 2026-09-10 · FileType Converters engineering

To export an Outlook email to PDF, print or save the message from Outlook when you need the client’s exact view, or convert MSG/EML files when you are processing saved messages in bulk. The important decisions are whether to include headers, attachments, embedded images, and original message files. Keep the original MSG or EML when metadata matters because a PDF is a readable rendering, not a complete email record.

Choose Outlook export or file conversion

If the message is still in Outlook and you need a one-off PDF, Outlook’s print-to-PDF route is often the closest to what a user sees. It uses Outlook’s message rendering and account context.

If you have saved .msg or .eml files, batch conversion is more practical. MSG is Outlook’s MAPI/OLE compound format, while EML is RFC 5322 text with MIME parts. The parser determines which body variant and headers become visible in the PDF.

Headers are not automatic

A message body PDF may show From, To, Sent, and Subject while omitting transport headers such as Message-ID, Received lines, DKIM results, and mailing-list metadata. For legal or audit work, decide whether those headers need to be rendered or preserved separately.

If full headers matter, export them as text or keep the original message file beside the PDF. A readable PDF is convenient for review, but it should not replace the source message in an evidence workflow.

Attachments and embedded images

Attachments may be listed, embedded, converted into following pages, or ignored depending on the tool. Inline images referenced by Content-ID need MIME handling, while remote images may not load for privacy or network reasons.

State the attachment policy before conversion. For example, create one PDF for the email body and a ZIP of original attachments, or append converted attachments after a divider page. Mixing these choices inside one archive makes later review harder.

HTML, plain text, and RTF bodies

Email often contains multiple body versions. A converter may prefer HTML, fall back to plain text, or attempt Outlook RTF extraction for MSG. The selected body affects line breaks, tables, signatures, tracking pixels, and quoted history.

When testing, use a message with a table, inline logo, reply chain, and attachment. Simple plain-text messages do not reveal the issues that appear in business email.

Batch workflow checks

For saved files, convert a sample first: message.msg to PDF and message.eml to PDF can differ because they expose different metadata. Verify dates, time zones, sender display names, and attachment filenames.

If a conversion fails, inspect the source type rather than assuming corruption. An .eml extension on an MSG file or a winmail.dat attachment inside EML needs a different parser path.

Operational checklist

Time zones deserve explicit review. Outlook may display sent times in the viewer’s local zone, while headers contain original transport dates. A PDF created on another machine may show a different local rendering unless the conversion policy fixes how dates are presented.

For bulk exports, log message identifiers and output filenames. If two messages have the same subject and sender, filenames alone are not enough to prove every message was converted. A manifest with source path, message date, output path, and status makes reruns safer.

Privacy settings can affect rendering. Some clients block remote images by default, while a converter running on a server may have no authenticated access to remote content. Decide whether remote images should be fetched, blocked, or noted as omitted.

Final checks

A final export package should contain a manifest. List each source message, output PDF, attachment handling choice, and any conversion warning so a reviewer can trace missing or duplicated material.

For shared mailboxes, record the mailbox and folder path as well as the message subject so exported PDFs can be traced later.

Questions

Does Outlook print to PDF include attachments?

Usually it prints the message view, not full attachment contents. Attachments often need separate saving or conversion.

Should I keep the original MSG or EML?

Yes when metadata, attachments, or audit trail matter. PDF is a rendering for reading, not the complete source message.

Why do inline images disappear?

The converter may block remote images or fail to resolve MIME Content-ID references used by embedded images.

Do it