Why Apple Mail → PDF?
Apple Mail is great for live use. For anything longer-term — legal production, compliance retention, archiving before a Mac refresh, backing up a family member's correspondence — PDFs are the right format. They don't depend on any mail client, they survive macOS upgrades, and they're easy to share.
Apple Mail gives you the first half of this workflow via Mailbox › Export Mailbox. The second half — turning the exported MBOX into well-formatted PDFs with watermarks, headers, and consistent pagination — is where a dedicated converter like MBOX to PDF comes in.
The quick version
- In Mail.app, select the mailbox(es) you want to archive.
- Mailbox › Export Mailbox → pick an output folder.
- Drag the resulting
.mboxbundle into MBOX to PDF. - Configure output, export, verify.
Step 1 — Select the mailbox
Open Mail.app and look at the sidebar. Every folder — Inbox, Sent, Drafts, Archive, plus any custom mailboxes — is selectable.
Cmd + click to select multiple mailboxes at once. Each selected mailbox produces its own .mbox bundle when exported, so you can archive five mailboxes in one pass.
Smart Mailboxes aren't exportable directly — they're virtual searches over other mailboxes. If you want to export a Smart Mailbox, duplicate the messages into a regular mailbox first (create a new local mailbox, select all in the Smart Mailbox, drag to the new one), then export that.
Step 2 — Rebuild the mailbox (optional but recommended)
If the mailbox you're exporting has been active for years, some messages may have minor inconsistencies between the on-disk store and Mail's index. Before exporting, select the mailbox and run Mailbox › Rebuild. This regenerates the index and resolves most inconsistencies. The step takes seconds to minutes depending on size.
Skip this step if the mailbox is freshly active and you trust the state.
Step 3 — Run Export Mailbox
With the mailbox(es) selected, go to the menu bar:
Mailbox › Export Mailbox…
Pick a destination folder. Your Desktop or ~/Documents/Mail-Export/ works fine. Apple Mail creates one .mbox bundle per mailbox, named to match the original folder.
About the .mbox bundle
Here's a macOS quirk that trips up new users: Apple Mail's exported .mbox is not a single file — it's a package, which macOS presents as a single icon but is really a folder. Right-click one and pick Show Package Contents to see inside:
Inbox.mbox/
├── mbox ← the actual MBOX file
├── Info.plist ← metadata
└── Attachments/ ← sometimes present
└── ...
The mbox file (no extension, just "mbox") inside is the actual MBOX-format archive. You can convert either the whole bundle or just that inner file — MBOX to PDF handles both.
Step 4 — Import into MBOX to PDF
Install MBOX to PDF from the Mac App Store. Launch the app.
You have two options for importing:
- Drag the whole
.mboxbundle into the window. Simpler — the app reaches into the bundle automatically. - Drag the inner
mboxfile (after Show Package Contents). Useful if drag-and-drop of the bundle misbehaves.
For multiple mailboxes: drag them all in at once. If you want each mailbox to produce its own PDF set, run separate conversions. If a single combined archive is fine, leave them all merged and export once.
Step 5 — Configure output
Pick settings based on why you're archiving.
Archiving before a Mac refresh
- One PDF per email.
- Extract attachments to a sibling folder.
- Filename pattern: date + subject.
- Keep original MBOX files alongside the PDFs in case you want to re-convert later.
Legal or compliance production
- Combined PDF with sequential pagination.
- Headers: page numbers + document title.
- Watermark: "Confidential" stamp applied uniformly.
- Extract attachments separately (easier for review).
- Leave quoted replies intact.
Family archive / sentimental
- One PDF per email so messages browse naturally in Finder.
- Keep HTML formatting — personal mail often has images and styled content worth preserving.
- Attachments can stay embedded in the PDFs if file sizes are manageable.
Step 6 — Verify
Open three or four PDFs at random. Check:
- Sender, recipient, subject, date headers visible and correct.
- HTML emails rendering (look for missing images if the originals referenced external resources).
- Attachments either embedded or extracted correctly to the sibling folder.
- Pagination continuous for combined PDFs.
- No encoding artifacts (garbled characters suggest an MBOX variant issue, which is rare but possible).
Organizing the output
A folder structure that matches your Apple Mail sidebar keeps long-term navigation sane:
AppleMail-Archive-2026/
├── Personal/
│ ├── Inbox/
│ └── Sent/
├── Work/
│ ├── Inbox/
│ └── Sent/
└── Family/
└── Archive/
For per-mailbox conversions, replicate this structure in Finder after converting.
Common issues
"Export Mailbox is greyed out"
You haven't selected a mailbox in the sidebar — only Smart Mailboxes or the top-level account headers can't be exported. Click a real mailbox folder and try again.
"The export finished but I can't find the files"
Check the destination folder you picked. Apple Mail sometimes defaults to places like the Desktop or Documents without announcing it clearly. The bundles are named after the original mailbox.
"The .mbox bundle is showing as a folder, not a file"
Expected behavior. The bundle is a package; Finder shows it as a single icon but Terminal and some tools see it as a folder. Either way, MBOX to PDF reads it correctly.
"Some messages are missing from the export"
Run Mailbox › Rebuild on the source mailbox and re-export. If messages are still missing, check Mail › Preferences › Accounts › Account Information and confirm all messages are downloaded locally (an IMAP-only account may not have cached every message on disk).
"The PDFs are huge"
Turn on attachment extraction so attachments save to a sibling folder instead of embedding in the PDFs. This often cuts output size significantly.
Alternative: import into MBOX to PDF directly from ~/Library/Mail/
Apple Mail's internal storage at ~/Library/Mail/ uses EMLX (one file per message), not MBOX, so you can't convert it directly with an MBOX-focused tool. The Export Mailbox command converts EMLX → MBOX for you. For most users, using the Export Mailbox path is simpler than reaching into ~/Library/Mail/.
Frequently asked questions
How do I export Apple Mail to PDF on Mac?
Select the mailbox in Mail.app → Mailbox › Export Mailbox → drag the resulting .mbox bundle into MBOX to PDF.
What is the .mbox bundle Apple Mail creates?
A macOS package (folder presented as a file) containing an inner mbox file plus metadata. Right-click › Show Package Contents to see inside.
Can I export multiple Apple Mail mailboxes at once?
Yes — Cmd + click multiple mailboxes before Export Mailbox. Each gets its own bundle.
Does Apple Mail have a direct Save as PDF option?
Only for one message at a time via File › Print. For batches, use Export Mailbox + a converter.
Will exporting preserve metadata and attachments?
Yes. Full RFC 5322 headers and MIME-encoded attachments are preserved. MBOX to PDF renders them and can extract attachments separately.
Where are Apple Mail's messages stored before export?
~/Library/Mail/ in EMLX format. The Export Mailbox command converts to MBOX during export.