SMTP 552 means the message exceeded a storage or size limit. Learn what 552 5.3.4, 5.2.2 and 5.2.3 mean, why Base64 overhead matters, and how to fix it.
Updated Jul 1, 2026
The short answer
SMTP 552 is a permanent rejection meaning "Requested mail action aborted: exceeded storage allocation" (RFC 5321). The receiving server refused the message because it is too large or the recipient's mailbox is over quota. Fix it by reducing total message size (compress attachments, link instead of attach, account for ~37% Base64 overhead) or, for a full mailbox, having the recipient clear space.
SMTP 552 is a permanent (5xx) reply defined in RFC 5321 §4.2.3 as:
552 Requested mail action aborted: exceeded storage allocation
In practice it means one thing: the receiving server refused the message because it would exceed a storage or size limit — either the message is too big, or the recipient's mailbox is over quota. Because it is a 5xx code, it is a permanent failure: retrying the identical message will fail again.
The accompanying RFC 3463 enhanced status code tells you which case you hit. Read the full reply line, not just the 552:
552-5.3.4 Your message exceeded Google's message size limits for this, against its 25 MB ceiling.452 4.2.2. In practice, expect to see both: 452 4.2.2 for a temporarily full mailbox, and 552 5.2.2 as a common (non-compliant but widespread) hard-cap variant.A frequent surprise: an attachment that looks under the limit still bounces. Email attachments are MIME-encoded with Base64, which inflates size by roughly 37%. A 19 MB file becomes ~26 MB on the wire — over Gmail's 25 MB limit. Always size your message post-encoding.
The original guidance that 552 is about disallowed attachment file types is inaccurate. Type/content rejections are usually expressed with 5.7.x policy codes (often on a 550/554); plain 552 is about size and storage, per the RFCs above.
For a too-large message (5.3.4 / 5.2.3) — the sender's job:
For a full mailbox (5.2.2) — the recipient must act: there is nothing the sender can change. Ask the recipient to delete messages or raise their quota. As a permanent failure, suppress the address and stop retrying until you have signal the box was cleared.
If you send through an ESP (SendGrid, SES, Mailgun) or via Courier, the 552 surfaces in your delivery/bounce logs as a hard bounce. Log the full enhanced status string so you can distinguish a size problem you can fix from a recipient-side quota problem you cannot. Treat 552 as a permanent bounce and remove the recipient from further retries to protect sender reputation.
References
FAQ
Permanent. 552 is a 5xx reply per RFC 5321, so resending the identical message fails again. The temporary counterpart for a transiently full mailbox is 452 (4xx). RFC 3463 designates the enhanced code X.2.2 ('mailbox full') for use with the transient class-4 code — i.e. the RFC-correct pairing is 452 4.2.2 — which is why many servers send 452 4.2.2 for a temporarily full box, even though 552 5.2.2 is also common in practice as a hard-cap variant.
One API, every provider
Courier connects to your email, SMS, and push providers, handles retries and failover, and surfaces delivery errors in plain language.
Reply-code definitions per RFC 5321 §4.2.3. Last reviewed Jul 1, 2026. Courier is not affiliated with third-party providers; error behavior may vary by implementation.
© 2026 Courier. All rights reserved.