← Back to blog

Splitting PDFs for Email — Attachment Size Best Practices

By DGital AppsUpdated 2 May 2026~7 min read

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.

Splitting PDFs for email

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:

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.

Email composition tips

When you do send a multi-attachment email, your message body matters more than usual:

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

  1. Open the PDF and check its size and page count.
  2. If it is heavy due to images or scans, compress first.
  3. Decide a split strategy: by section if natural divisions exist, otherwise by page count.
  4. Choose target part size based on the recipient's mail limits, with a 7 MB fallback if unknown.
  5. Split using zero-padded names like name_part_01_of_NN.pdf.
  6. Send all parts in one message with a body that lists what each part contains and the total count.
  7. 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.