You've got an important email sitting in your inbox — a signed contract, a tax document, or a project confirmation. You need it as a clean PDF file. And somewhere in Outlook's menus, the path to that PDF is… nowhere to be found. At least not labeled as such.
That's the first thing that confuses people about how to export Outlook email to PDF. The native option isn't hidden behind a "Save as PDF" button. It's buried inside the Print dialog, which tells you more about Microsoft's design philosophy than you probably wanted to know. I've spent years helping teams build email archiving workflows, and I still get the same frustrated question: "Why can't Outlook just do this directly?"
So let's clear this up once and for all. I'll walk you through the quick single-email method, the batch methods that actually work, the truth about email attachments, automation options, and the troubleshooting fixes most guides skip entirely.
Quick Answer: How to Export Outlook Email to PDF
The fastest way to turn one email into a PDF takes about ten seconds. No extra software required.
The 4-Step Shortcut That Works on Desktop and Web
- Open the email you want to export.
- Click the three dots ("More actions") at the top of the message and choose Print.
In classic Windows Outlook, use File > Print instead. - In the Printer or Destination menu, select Microsoft Print to PDF on Windows, or Save as PDF on Mac and Outlook on the web.
- Click Print or Save, enter a file name, pick a destination folder, and save.
That's it.
But here's the catch — and it's a big one. This method exports only the email currently open on your screen. It does not embed file attachments. If you're trying to export several messages, or if the attachment is the whole point of the export, keep reading.
Step-by-Step: Save Outlook Email as PDF on Windows, Mac, New Outlook, and Web
Classic Outlook for Windows: Outlook 2016, 2019, 2021, and Microsoft 365 Desktop
If your Outlook still has the classic ribbon interface — the one with File, Home, Send / Receive at the top — this is your path:
- Open the email and go to File > Print.
- In the Printer drop-down, select Microsoft Print to PDF. Don't worry about the word "Printer" — nothing physical will print.
- Click Print. A "Save Print Output As" dialog appears.
- Choose your destination folder, type a file name, and click Save.
Most people stop here, and honestly, for a single email that's all you need. One tip from experience: if Microsoft Print to PDF doesn't show up in that list at all, skip to the troubleshooting section below. It's a ten-minute fix, but only if you know where to look.
New Outlook for Windows and Outlook on the Web
The "new" Outlook flip-flopped the menu structure, which confuses people who upgraded recently. Here's the current route:
- Open the email and click the More actions (three dots) icon near the top.
- Select Print. The print preview screen appears.
- In the Destination drop-down, choose Save as PDF or Microsoft Print to PDF, depending on what your version calls it.
- Click Save, then choose a location on your computer or OneDrive.
Quick note: in the web version, the destination option is almost always labeled Save as PDF. In the new Outlook desktop app, it sometimes appears as Microsoft Print to PDF. The result is identical.
Outlook for Mac
Mac users have a slightly different flow, but it's arguably easier to discover because macOS has a built-in PDF button in every print dialog:
- Open the email and choose File > Print, or in the newer Mac interface, click More actions > Print.
- In the print dialog, click the PDF button in the lower-left corner.
- Select Save as PDF from the dropdown.
- Name the file, choose a location, and click Save.
One honest limitation: Outlook for Mac does not offer a native folder-level batch export. If you have 40 emails to convert, you'll either be clicking 40 times or jumping to the batch methods in the next section.
Check Print Preview Before You Export
Before you hit that final Save button, glance at the print preview. I know it feels like an unnecessary detour, but it will catch the three most common PDF export problems:
- Clipped content — long email threads get cut off mid-sentence when the page is too narrow.
- Awkward page breaks — a message that should be one page bleeds onto three, with two nearly-blank pages in between.
- Ugly wrapping — tables and formatted content get squeezed or stretched oddly.
If you spot issues, adjust the paper size or scale settings in the print dialog before exporting. Also, take a second to confirm the preview shows only the visible email body. Attached files won't appear in a native print-to-PDF export, and that's normal, not a glitch.
How to Export Multiple Outlook Emails to PDF: 4 Methods That Actually Work
The single-email method is fine for occasional use. But what if you need 50 emails for an audit, a compliance review, or a project handoff? Manually exporting each one is the kind of task that eats an entire afternoon. Here are the methods that work, with their trade-offs.
Method 1: Multi-Select and Print to PDF in Classic Windows Outlook
This is the closest thing to a native batch export, and it only works reliably in classic Windows Outlook:
- In your folder, Ctrl+click each email you want, or Shift+click the first and last email in a range.
- Go to File > Print.
- Select Microsoft Print to PDF as the printer.
- Click Print. Outlook sends every selected message into a single PDF file.
That's genuinely useful. But two caveats: the output is one consolidated PDF, not separate files per email, and attachments won't be embedded. Also, this multi-select trick doesn't behave the same way in the new Outlook or on Mac, where the File > Print path often only exports the focused message.
Method 2: Automate the Bulk Export with a VBA Macro
When I've needed to convert an entire folder for a legal team without buying software, this is the route I've used. Classic Windows Outlook can run a VBA macro that loops through selected emails, converts each one, and saves them as PDFs — no per-file prompt after each export.
The core pattern looks something like this:
Sub ExportSelectedEmailsToPDF()
Dim objItem As Object
Dim strFolder As String
Dim strHTML As String
Dim objWord As Object
Dim objDoc As Object
Dim i As Integer
strFolder = "C:\EmailExports\" ' Change this path
Set objWord = CreateObject("Word.Application")
For Each objItem In Application.ActiveExplorer.Selection
i = i + 1
' Save the email as an HTML file in the temp folder
objItem.SaveAs strFolder & "temp_" & i & ".htm", 5 ' 5 = olHTML
' Open the HTML file in Word and export as PDF
Set objDoc = objWord.Documents.Open(strFolder & "temp_" & i & ".htm")
objDoc.ExportAsFixedFormat _
OutputFileName:=strFolder & "Email_" & i & ".pdf", _
ExportFormat:=17 ' 17 = wdExportFormatPDF
objDoc.Close False
Next objItem
objWord.Quit
MsgBox "Exported " & i & " emails to " & strFolder
End Sub
Copy that into the VBA editor (press Alt+F11, insert a new module, paste), adjust the export path, and run it with your emails selected.
Now the important warnings. First, macro security settings may block this — you'll need to enable macros or digitally sign the project. Second, test it on a backup folder before pointing it at your entire inbox. Third, VBA does not work in the new Outlook for Windows or in Outlook for Mac. If you're on either of those, you'd need a different automation path. And fourth, the macro above is a starting scaffold, not a polished production script — check the numeric constants against your Outlook/Word versions, because they can vary. In my own consulting work, I've seen those constants behave differently across Office builds, which is precisely why I insist on sample tests.
Method 3: Schedule Recurring PDF Exports with Power Automate
If the export is something you'll need every week — invoices, compliance reports, client notifications — Power Automate is worth investigating. You can build a flow that triggers when a new email arrives with a specific subject or category, converts the email body to a PDF, and saves it to SharePoint or OneDrive.
The flow structure looks like this:
- Trigger: When a new email arrives (Outlook 365), or on a schedule against a dedicated folder.
- Condition: Subject contains "Invoice" or the message is categorized "Archive".
- Convert action: A PDF conversion connector turns the email content into a PDF file.
- Output: Save to SharePoint, OneDrive, or a document management system.
Here's where I have to be straightforward about costs: the native Microsoft 365 connectors don't always include an email-body-to-PDF action. That capability often lives in a premium connector or a third-party PDF service, which means licensing costs can appear. Check the connector pricing before you build the whole workflow, not after. If a client asks me for "automatic email searching with zero budget," I know we're going to have a conversation about what premium really means.
Method 4: Use a Dedicated Outlook Email to PDF Converter
When volume gets serious — think thousands of emails, attachment retention, or one-PDF-per-message output — dedicated tools start to make sense. They're especially useful on Mac, where no native batch option exists.
| Tool category | Platform | Typical batch size | Attachment support | Pricing model |
|---|---|---|---|---|
| Windows-only batch converters | Windows | Unlimited / folder-wide | Sometimes, check per tool | One-time license, some free tiers |
| Cross-platform email archivers | Windows + Mac | Unlimited / folder-wide | Included in most | Paid, often trial-limited |
| Cloud-based conversion services | Web browser | Subscription limits | Varies | Monthly fee |
| Manual + PDF merger | Any | Small | Manual, full control | Free (OS built-in + free merger) |
| Because tool names and prices change constantly, I won't recommend a specific brand in this guide — instead, I'll give you the checklist I use with clients: |
- Does it support your Outlook version (classic, new, Mac, Office 365 web)?
- Does it embed attachments in the PDF or save them alongside?
- What's the trial limit? Many tools cap free exports at 10–20 emails per run.
- Where does the data go? If emails contain sensitive or privileged information, read the privacy policy and hosting location carefully.
Which Batch Method Should You Choose?
Here's the decision matrix I've refined over years of handling these scenarios:
| Method | Cost | Platform | Attachments | Output | Skill level |
|---|---|---|---|---|---|
| Multi-select + print | Free | Classic Windows only | No | Single combined PDF | Beginner |
| VBA macro | Free | Classic Windows only | No (manual handling needed) | One PDF per email | Intermediate |
| Power Automate | Free or premium connector | Outlook 365 cloud | Conditional | One PDF per trigger | Intermediate/Advanced |
| Dedicated converter | Paid | Windows/Mac/cloud | Often yes | Flexible | Beginner |
| If you just need eight emails combined into one file for a meeting on Friday, use the multi-select trick. If you need it every month without clicking anything, invest time in Power Automate. If you're converting an executive's mailbox of 5,000 messages and the attachments must be preserved, pay for a dedicated tool. There's no universal winner — only the right tool for your specific constraint. |
Does Converting Outlook Email to PDF Include Attachments? No, and Here Is the Fix
I've seen grown professionals go pale when they realize the PDF they just created — the one containing a "complete" contract email with a signed agreement attached — contains only the body text. The attachment is invisible.
It's not a bug. It's how the native export was designed.
How Native Outlook-to-PDF Export Treats Attachments
When you use Microsoft Print to PDF, Outlook renders only the visible message body. The attached PDF, Word document, Excel spreadsheet, or image is not embedded in the output. Inline images that are embedded in the body do appear, but standalone attachments don't.
This limitation catches people off guard in precisely the worst circumstances: legal documents, contracts, insurance claims, and project records. In fact, the Microsoft Learn Q&A forums have a locked thread about folder-level PDF export that has accumulated over 100 "Same question" votes — a small but telling sign of how many people have run into email-to-PDF walls.
Three Ways to Produce a Complete PDF with Attachments
Depending on how much control you need, here are your options:
Option 1: Save attachments separately, then merge. Save the email as a PDF using the native method. Then save the attachments from Outlook (click the attachment dropdown and choose Save As), convert any non-PDF files to PDF, and merge everything with a free PDF merger tool. This is tedious but reliable and fully manual.
Option 2: Use an attachment-aware converter. Some dedicated Outlook-to-PDF tools can embed attachments in the output or create a parent PDF plus a folder of original files. If you go this route, test it first with two difficult cases: a PDF attachment and an Excel file. Those are the formats that expose converter weaknesses fastest.
Option 3: Keep the email PDF and originals together in an archive folder. Sometimes you don't actually need one giant file. A named folder containing the email export plus the original attachments is often more practical for audits and handoffs. Don't force everything into a single PDF when a folder structure works better.
How to Export Outlook Email to PDF Automatically
Manual exports are fine until the day you realize you've been doing the same export every Monday for two months. If that's you, automation isn't a luxury — it's the solution.
Automatic Folder Export with a Script or Scheduled Task
The VBA macro from the previous section can run automatically. Windows Task Scheduler can open Outlook and trigger the macro on a schedule, and inbox rules can move important incoming messages into a dedicated archive folder before the export runs.
I built this setup for a small accounting firm once. Every Friday at 5 p.m., the scheduler fired, Outlook opened, and a macro exported the week's invoices to a network folder. The whole thing ran without anyone touching a mouse. That's the beauty of a local, offline automation path — no cloud connector, no licensing fees, no data leaving the building.
Power Automate Workflow for Outlook 365 and SharePoint Archiving
For cloud-based teams, Power Automate is the more sustainable route. You can build a flow that:
- Triggers when an email arrives with a specific subject or category.
- Extracts the email body and metadata.
- Converts the body to a PDF using a PDF action or premium connector.
- Saves the PDF to SharePoint, OneDrive, or Teams.
This moves the archive out of any single machine and into a shared repository the whole team can access. No local software installation on each laptop.
When Should You Automate Email-to-PDF Export?
Automation is worth the setup cost when the export is predictable and recurring — daily order confirmations, weekly invoice runs, monthly compliance picks. If you're exporting one folder once, a manual method or one-click converter will be faster and safer. You're not "saving time" if the automation setup takes longer than the manual task itself. And regardless of the route, take a backup before you let any automated process sweep through an entire mailbox.
Troubleshooting: Why Outlook Email to PDF Export Is Missing or Not Working
When something goes wrong, it's rarely subtle. The printer dropdown is empty, the PDF comes out blank, or the whole option seems to have vanished. Let's fix the most common failures.
Microsoft Print to PDF Is Missing from Outlook
This happens more often than you'd think, and it's not an Outlook problem at all. Microsoft Print to PDF is a Windows feature, and if it's not enabled, Outlook won't list it.
To re-enable it:
- Open Windows Settings.
- Go to Apps > Optional Features.
- Click Add a feature.
- Search for Microsoft Print to PDF.
- Install it, then restart Outlook.
If you're on a work-managed device, the feature may require an administrator to install it. In that case, submit a quick IT ticket. It's usually a five-minute approval, not a day-long project.
New Outlook Moved the PDF Export Path
The old File > Print path isn't the primary route in the new Outlook for Windows anymore. If you've upgraded and can't find the export:
- Open the email.
- Click More actions (three dots).
- Choose Print.
The destination in that new dialog may be called Save as PDF or Microsoft Print to PDF, depending on your OS and Outlook build. If the print preview looks blank, close Outlook, install the latest Windows and Outlook updates, and try again. In my experience, a blank preview after an Outlook update is almost always a rendering glitch that the next update fixes.
The PDF Is Blank, Cut Off, or Missing Content
Let's run through this systematically:
- Blank preview: check the paper size and scale. Some email content gets pushed off the printable area when the default paper size doesn't match the layout.
- Cut-off conversations: switch from the default Table style to the Memo style if you're exporting a conversation with indented replies. It won't fix everything, but it handles threading much better.
- Missing attachments: that's expected behavior for the native method, not an error. Refer to the attachment section above.
- Giant file size from image-heavy email: try reducing color depth in the print settings, or use a dedicated converter that compresses images.
Save Outlook Email as PDF Without Printing: 2 File-Based Workarounds
Some people hear "Print to PDF" and refuse to go near it. Maybe they're in a locked-down environment where printing is blocked. Maybe they simply want a file-based workflow. If that's you, there are ways around the print renderer.
Why the Native Outlook PDF Option Always Uses a Print-Style Renderer
Classic Outlook doesn't have a "Save as PDF" button, because it was designed long before PDF workflows became universal. Even Microsoft Print to PDF is technically a virtual printer — it intercepts print commands and writes a file instead. So every native export path runs through that print pipeline.
A quick clarification worth making: "Print to PDF" doesn't use a physical printer. No paper is involved. The only thing happening is that your computer's graphics pipeline renders the email, and a virtual printer catches that rendering and saves it as a PDF file. If your concern was wasting paper, you can stop worrying — the PDF printer is as file-based as it gets.
Use an .eml or .msg Export Path with a Converter
If you genuinely want to bypass the Windows print system, you can save the email as an .eml or .msg file and convert that file directly:
- In Outlook, save the email as a .msg file (or drag it to your desktop to create a .msg).
- Use an email-file converter or command-line utility that can parse .eml/.msg files and render them to PDF.
- The converter handles the process outside the print queue entirely.
This path is useful in remote desktop environments where the print spooler is disabled, or on systems where you want a fully scripted conversion. The trade-off: fidelity. Email layout, embedded images, and styling may not survive perfectly, and attachments need separate handling. But for archiving purposes, a decent .msg converter produces acceptable results — and it's a way to export Outlook email to PDF when the print-related options are simply unavailable.
FAQ: Outlook Email to PDF Export
How do I export Outlook emails to PDF?
Open the email, open the Print dialog, choose Microsoft Print to PDF (Windows) or Save as PDF (Mac/web), and save the file. Classic Windows Outlook uses File > Print; Mac and web users can find the option in the Destination drop-down of the print dialog.
How do I export multiple Outlook emails to PDF?
You have four options depending on your situation: multi-select plus File > Print in classic Windows Outlook to combine messages into one file, a VBA macro for folder-level automation, Power Automate for recurring cloud workflows, or a dedicated converter tool when you need large volumes or attachment support. The decision matrix in the batch section will help you choose.
Does exporting Outlook email to PDF include attachments?
No, not with the native Microsoft Print to PDF method. The PDF captures only the visible email body. To include attachments, save them separately and merge them into the PDF, or use an attachment-aware converter tool.
Can I save Outlook email as PDF on Mac?
Yes. Open the email, choose Print, click the PDF button in the print dialog, and select Save as PDF. One caveat: Outlook for Mac doesn't support native batch folder exports, so multiple emails require repetition or a Mac-compatible third-party converter.
The Bottom Line
Exporting Outlook email to PDF looks like a simple question, but it opens a rabbit hole of version differences, platform quirks, and attachment surprises. The good news is that the single-email export takes seconds once you know the print-dialog secret. The batch workflows take a bit more thought — but the four methods above cover everything from a one-time 10-email export to a fully automated archive pipeline.
Before you go, remember these three lessons from the trenches: attachments are never embedded in native exports, print preview is your best quality check, and Microsoft Print to PDF is the first thing to verify when the option disappears.
Bookmark this guide for the next time you need a clean email archive. And if you've worked through the troubleshooting steps and still can't figure out how to export Outlook email to PDF on your specific version, tell me which Outlook build you're using — classic Windows, new Outlook, Mac, or Outlook 365 on the web — and I'll point you to the safest converter path for your workflow.