Compress PDF for Email
Every email provider tells you a maximum attachment size. They're all slightly wrong. Not because they're lying, but because the number they advertise doesn't account for how email actually encodes attachments. A "25 MB" limit often rejects an 18 MB file.
This article explains why that happens, what each major provider actually accepts, and what to do when your PDF is genuinely too big to email — which happens more often than you'd think.
What's in this guide
Real attachment limits by provider
Numbers below are the current state of things, but providers change these without warning. Treat them as approximate. When in doubt, send yourself a test email first.
| Provider | Stated limit | Practical working limit |
|---|---|---|
| Gmail | 25 MB | ~18 MB |
| Outlook.com | 20 MB | ~15 MB |
| Yahoo Mail | 25 MB | ~18 MB |
| iCloud Mail | 20 MB | ~15 MB |
| Proton Mail | 25 MB | ~18 MB |
| Microsoft 365 (business) | 35 MB (configurable) | ~25 MB |
| Google Workspace | 25 MB (standard), 50 MB (admin-configurable) | ~18 MB / ~37 MB |
Notice the pattern: practical working limit is roughly 75% of the stated limit. That's the base64 overhead, which brings us to the next section.
Why the limits are smaller than stated
Email was designed in the 1970s, before binary file attachments existed. Messages were text. When attachments became possible, they were encoded as text using a method called base64, which represents binary data using only printable ASCII characters.
The catch: base64 encoding makes binary data about 33% larger. So a 20 MB PDF becomes approximately 26.6 MB on the wire. If your provider says "25 MB limit," what they actually mean is: "the encoded payload must be under 25 MB," which works out to about 18.75 MB of original file.
Add the rest of the email (headers, text, signatures) and the real usable space for your attachment is closer to 18 MB.
This is why "compress to 25 MB for Gmail" advice is misleading. If your PDF is 19 MB after compression, Gmail will still reject it.
Realistic compression targets
If your goal is to email a PDF, use these as your effective targets:
- Gmail, Yahoo, Proton: Aim for under 18 MB. If your original is under 18 MB, don't compress at all.
- Outlook.com, iCloud: Aim for under 15 MB.
- Microsoft 365 business: Aim for under 25 MB.
- Unknown recipient: Aim for under 10 MB. This is safe across virtually every provider, mobile client, and corporate mail gateway.
The last one is worth internalising. Corporate email gateways often have stricter limits than the mail provider itself. A 15 MB attachment that gets through Gmail might bounce at a corporate firewall. If you don't know the recipient's environment, 10 MB is the safe target.
What compression can realistically achieve
Rough guide to how small you can get different kinds of documents:
| Document type | Typical starting size | Achievable after compression |
|---|---|---|
| Scanned document (10 pages, 300 DPI) | 15–25 MB | 2–5 MB |
| Text-heavy report (50 pages) | 3–6 MB | 2–5 MB |
| Photo-heavy catalog (30 pages) | 30–60 MB | 8–20 MB |
| Mixed presentation (100 slides with images) | 40–80 MB | 12–30 MB |
If your target is smaller than the achievable size for your document type, compression won't get you there without visible quality loss. In that case, use a share link instead.
When email isn't the right tool
For files that genuinely can't be compressed small enough, emailing is the wrong approach. Several alternatives are better:
Cloud share links (best for most cases)
Upload to Google Drive, Dropbox, OneDrive, or iCloud Drive, and send a share link. These services host files many gigabytes in size. The recipient clicks, downloads, done. You also get delivery confirmation (you can see when they opened it) and the ability to revoke access later.
Downside: requires the recipient to click a link and possibly sign in or pass a captcha. Some older corporate email systems block links to consumer cloud services.
File transfer services
WeTransfer, Send Anywhere, and similar services let you upload a file (up to 2 GB on free tiers) and get a shareable link valid for a few days. No account required for the sender.
Downside: privacy concerns if the file is sensitive. Read the service's policy before uploading anything confidential.
Split and email in parts
If you must use email, split the PDF into chunks under 15 MB each and send as multiple attachments. The recipient has to recombine them. Tedious but works when nothing else does.
Our Split PDF tool handles this — set "every N pages" so each chunk falls under your target size.
A practical workflow
Here's the sequence I use when someone asks me to "just email them the file":
- Check the actual size. Many people assume a file is too big when it isn't. If it's under 10 MB, send it as-is.
- If it's 10–18 MB, try compressing with the Compress PDF tool. For scans, this usually gets well under 10 MB.
- If it's over 18 MB, ask whether the recipient actually needs it via email. Nine times out of ten, a share link is better and preferred.
- If the recipient insists on email, split the file into chunks of 10 MB each. Two emails of 10 MB are more reliable than one email of 20 MB.
- Never re-compress a compressed file hoping for a different result. The algorithms converge.
FAQ
Why do email limits seem lower than what's stated?
Base64 encoding adds about 33% overhead when binary files are turned into email-safe text. Plus email headers and content. A "25 MB" limit really means about 18 MB of file.
What's better than emailing a large PDF?
A share link. Google Drive, Dropbox, OneDrive, and WeTransfer all handle files far larger than any email limit, and they let you revoke access later.
Can I compress a PDF to any specific size?
Not reliably. Compression adjusts quality to reduce size, but the resulting size depends entirely on the source content. If a tool claims "compress to 500 KB guaranteed," it's either going to produce a bad result or it's lying about the output size. Our Compress PDF tool gives you honest feedback about what it achieved.
Will compression damage my document?
Depends on the method. Rasterization (which most browser tools, including ours, use) turns text into images. It reduces size significantly but text becomes non-selectable. If your recipient needs to search or copy text, compress first, then OCR to rebuild a text layer.
Should I use ZIP to reduce size?
ZIP won't help much for a PDF. PDFs already use internal compression (Flate), so ZIP typically reduces them by less than 5%. ZIP is useful for combining multiple files into one attachment, but for PDF size reduction, compression is the tool you want.