How to split a large PDF to get under an email size limit

Updated 2026-08-24 · 7 min read

Short answer: Gmail allows 25 MB per message and Outlook.com allows 20 MB, but Base64 encoding inflates attachments by about a third, so aim for 18 MB or less. Compress the PDF first; if it is still too big, split it into numbered parts that each land under that ceiling.

Two numbers decide this: what your provider allows, and what the recipient's provider allows. The smaller of the two wins, and you do not know the second one. That is why the practical target is lower than any published limit.

The limits, and the hidden third

ServiceSending limitReceiving limitWhat happens above it
Gmail25 MB per messageUp to 50 MBAuto-uploads to Google Drive and inserts a link
Outlook.com20 MB20 MBPrompts you to use a OneDrive link instead
Microsoft 365 / Exchange Online25 MB by default25 MB by defaultAdmins can raise it to 150 MB; most do not
Yahoo Mail25 MB25 MBRejected
iCloud Mail20 MB20 MBMail Drop takes over, up to 5 GB, links expire after 30 days
Proton Mail25 MB total per message25 MBRejected
Most corporate servers10-25 MB10-25 MBSilently bounced, sometimes with no notice to you

Attachment limits as of 2026. Sending limits are the ones that bite.

The hidden third is encoding overhead. Email attachments are Base64-encoded for transport, which represents every 3 bytes as 4 characters. That is a 33 percent increase, plus line breaks. A 20 MB PDF becomes about 27 MB on the wire, and a 25 MB stated limit usually applies to the encoded message, not to your file.

Note: Aim for 18 MB per attachment. That leaves room for Base64 expansion under a 25 MB ceiling, plus headers and the message body. Under a 20 MB ceiling, aim for 14 MB.

Compress first. Almost always.

Splitting is a workaround; compression is a fix. The recipient gets one attachment instead of four, nobody has to reassemble anything, and the document stays whole. Try it first and only split if compression is not enough.

How much you can expect to save depends entirely on what is making the file big:

What is in the PDFTypical size beforeAfter compressionWhy
300 DPI colour scans1-3 MB per page100-300 KB per pageDownsampling to 150 DPI plus better image encoding
Phone photos placed on pages3-5 MB per page200-500 KB per page12 megapixels is far more than a page can show
Text and vector graphics onlyUnder 200 KB per pageBarely changesThere is nothing to downsample
Presentation slides exported to PDF500 KB-2 MB per slide150-400 KB per slideBackground images and embedded fonts
Signed or certified documentsAnyDo not compressIt would invalidate the signature

Try compression before splitting. A 60 MB scan usually lands between 5 and 10 MB.

Deciding what to do

SituationDo this
40 MB of scans, mostly imagesCompress. It will almost certainly fit in one message.
22 MB, already compressed, text-heavySplit into two parts of about 11 MB each.
200 MB video-embedded or archival fileDo not email it. Share a cloud link.
Legal or signed document that must not changeSplit, never compress. Compression re-encodes and breaks signatures.
Recipient is on a corporate server with a 10 MB capSplit into 7 MB parts, or use a link.
You do not know the recipient's limitKeep each part under 10 MB. It is below every common ceiling.
Recipient asked for one fileCompress hard, or share a link, and say why.

Pick the route that matches the file and the recipient.

Splitting it properly

  1. Work out the chunk size Divide the file size by your per-message target. A 68 MB PDF with an 18 MB target needs 4 parts, so round up and aim for 4 or 5.
  2. Convert that to pages Divide the page count by the number of parts. A 68 MB, 240-page file split into 5 gives 48 pages per part. Use the every-N-pages mode with N = 48.
  3. Split at a sensible boundary Nudge the boundaries so parts break between chapters or sections rather than mid-sentence. Custom ranges are worth the extra typing here. See splitting into pages or ranges.
  4. Check every part Sizes are rarely even, because pages are not equally heavy. One 90-page part of thin text can be smaller than a 20-page part of scans. Verify each file individually against your target.
  5. Name them for the recipient Use Report_2026_part1of4.pdf rather than Report (1).pdf. The person on the other end has to work out the order without you.
  6. Send in order, one per message Say in the first message how many parts there are, and mention how to reassemble them if the recipient needs the whole document.

Split by page count or by custom ranges, with the page count for each part shown before you commit.

Watch out: Never split a PDF into parts and then compress each part separately if the document is being submitted somewhere official. Page numbering, signatures and any certification will not survive, and a reviewer receiving four unrelated-looking files is a good way to have a submission rejected.

The option most people should take instead

Splitting a document across four emails is a bad experience for whoever receives it. A link is better in almost every case where it is allowed:

Why the PDF is large in the first place

Worth knowing, because it changes what you should do. A 50 MB PDF is almost always one of three things: a scanned document stored at 300 or 600 DPI, a set of pages carrying full-resolution photographs, or an export from design software that embedded every asset at print resolution. All three compress dramatically. A 50 MB PDF that is genuinely mostly text is rare, and usually means the file has accumulated revision history through incremental saves, which a full rewrite clears out.

If the file came from a scanner, also run OCR while you are at it. It adds a small amount of size and makes the document searchable, which is what the recipient will want next anyway.

Frequently asked questions

What is the maximum attachment size for Gmail?

Gmail allows 25 MB for a message you send and can receive up to 50 MB. Above 25 MB it uploads the file to Google Drive and inserts a link instead. Because attachments are Base64-encoded, aim for about 18 MB of actual file to stay under the ceiling.

What is the Outlook attachment size limit?

Outlook.com caps attachments at 20 MB. Microsoft 365 and Exchange Online default to 25 MB, which an administrator can raise to 150 MB, though most organisations leave the default in place.

Should I compress or split a large PDF?

Compress first. It keeps the document as one file, and a scan-heavy PDF typically drops by 80 to 90 percent. Split only when compression is not enough, or when the document is signed or certified and must not be re-encoded.

How do I split a PDF into equal parts by file size?

Divide the total size by your per-message target to get the number of parts, then divide the page count by that number and split every N pages. Check each part afterwards, because pages vary in weight and the split will not be perfectly even.

Why does my 24 MB PDF bounce from a 25 MB limit?

Attachments are Base64-encoded for transport, adding roughly 33 percent, so a 24 MB file travels as about 32 MB. The limit applies to the encoded message including headers, which is why the practical maximum is around 18 MB.

Tools

Keep reading