Splitting PDFs for Email — Attachment Size Best Practices
Email is still the most common way to send a document to someone you do not work with directly. But the size limits enforced by mail providers and corporate gateways have not really moved in a decade, while PDFs — especially scanned ones — keep getting bigger. Splitting cleanly is often a better answer than re-compressing the file into oblivion. Here is how to do it without confusing the recipient.

The numbers you need to know
Mail providers publish their limits, but the values that actually matter in practice are slightly different from the headline numbers because of MIME encoding overhead (attachments grow about 33% on the wire). A 25 MB attachment limit therefore really means "your raw file should be under 18–19 MB". Useful real-world ceilings:
- Safe everywhere: 7 MB. Almost no gateway, including aggressively configured corporate ones, blocks at this size.
- Most consumer providers: 18 MB raw / 25 MB on the wire. Gmail, Yahoo, Outlook.com.
- Microsoft 365 default: 25 MB raw / 33 MB on the wire — but corporate admins commonly lower this.
- iCloud Mail: 14 MB raw / 20 MB on the wire.
- Government / legal portals: often capped at 10 MB total per submission, sometimes 5 MB.
If you do not know the recipient's limit, target 7 MB per attachment. If you do know they use Gmail or modern Outlook, 18 MB raw is fine. The remaining choice is then about how to split, not just how much.
Splitting strategy 1 — by chapter or section
If your PDF has natural divisions — a contract with numbered sections, a report with chapters, a manual with parts — split along those boundaries. The recipient gets a logical sequence ("Contract_Part1.pdf, Contract_Part2.pdf") and can read them in order without losing context. This is by far the friendliest pattern for the recipient.
Most splitting tools, including our PDF splitter, let you specify exact page ranges. Open the document first to identify section boundaries, then split at those page numbers rather than at arbitrary intervals.
Splitting strategy 2 — by even page count
If the document has no obvious sections (a long scan, a photo album, a single uninterrupted text), splitting by even page count works well. For a 200-page scan that comes out to 80 MB, splitting into 4 files of 50 pages each is straightforward. The recipient knows from the filenames ("Document_pages_1-50.pdf, pages_51-100.pdf, …") exactly which order to open them in.
Splitting strategy 3 — pre-emptive compression first
Before splitting, ask yourself whether the file should be that big in the first place. As covered in our compression guide, scans and image-heavy documents often shrink by 80–90% with sensible re-encoding. A 200 MB document that compresses to 35 MB might fit Gmail's 25 MB limit in two parts instead of nine.
The practical order is: compress first, then split if still required. Doing it the other way round produces more files than necessary and a worse recipient experience.
Naming conventions that do not confuse anyone
The single biggest reason split-PDF emails go wrong is filenames that imply the wrong order. Use zero-padded numbers and consistent prefixes.
- Good:
Annual_Report_part_01_of_05.pdf - Good:
scan_pages_001-050.pdf, scan_pages_051-100.pdf - Bad:
scan.pdf, scan2.pdf, scan10.pdf— sorts as 1, 10, 2 in many file managers - Bad:
chapter1.pdf, chapter1_v2.pdf, chapter1_final.pdf— recipient cannot tell which is the latest
Email composition tips
When you do send a multi-attachment email, your message body matters more than usual:
- List the attachments with a one-line description of each. "Part 1 — pages 1 to 50 (executive summary and methodology)" is much more useful than just attaching files and hoping the recipient figures it out.
- State the total. "5 of 5 attached" tells the recipient when the message thread is complete and helps them notice if one is missing.
- Send all parts in one message if possible. Multiple messages risk arriving out of order, getting filtered, or being threaded incorrectly. If the total is too big for one message, send each part as a reply to the first message rather than as separate messages.
- Mention the password. If any of the parts are encrypted, send the password through a different channel (SMS, phone) and confirm receipt.
When file-sharing links beat splitting
Splitting is the right answer when the recipient is on a thin connection, has a strict mailbox quota, or works for an organisation that blocks file-sharing services. In other cases, a single shareable link is genuinely more convenient. Modern Gmail and Outlook integrate Drive and OneDrive sharing directly: when you try to attach a file over the limit, the client offers to upload it and send a link instead. The recipient downloads once, the file is auditable, and you do not break it into pieces.
Be careful with link expiry — some shared links expire after a fixed time or after a download cap. For documents the recipient may need to re-fetch later, set the link to permanent or the recipient will eventually email you back asking for the file again.
A reliable workflow
- Open the PDF and check its size and page count.
- If it is heavy due to images or scans, compress first.
- Decide a split strategy: by section if natural divisions exist, otherwise by page count.
- Choose target part size based on the recipient's mail limits, with a 7 MB fallback if unknown.
- Split using zero-padded names like
name_part_01_of_NN.pdf. - Send all parts in one message with a body that lists what each part contains and the total count.
- If a recipient cannot accept multiple attachments, fall back to a sharing link.
This pattern works for everything from a 12-page invoice batch to a 600-page legal bundle. The principle is the same: the recipient should never have to guess the order, the count, or which version is current. Spending 30 seconds on filenames and the email body saves 30 minutes of follow-up correspondence.