
The 550 5.1.3 error means the recipient email address has invalid syntax — missing the @ symbol, containing illegal characters, or formatted incorrectly.
Fix it by verifying the address structure, clearing auto-complete caches, and checking how your application constructs SMTP addresses.
Unlike 5.1.1 (mailbox doesn’t exist) or 5.1.2 (domain is invalid), the 5.1.3 code flags format problems. The receiving server rejects the address before even checking whether the mailbox exists because the address violates RFC 5321 syntax rules.
Repeated syntax errors in your sends suggest your data collection or mail application has structural issues worth investigating.
Quick skim — 550 5.1.3 error overview
The 550 5.1.3 error flags formatting violations rather than missing mailboxes or domains.
| Attribute | Details |
| Error code | 550 5.1.3 (also appears as 553 5.1.3) |
| Category | Addressing / syntax error |
| Meaning | Address format violates RFC 5321 |
| Severity | Permanent (hard bounce) |
| Common causes | Missing @, spaces, illegal characters, display name in envelope |
| Fix approach | Validate format → fix data source → correct application behavior |
What does 550 5.1.3 mean?
The 550 5.1.3 error indicates the destination address is syntactically invalid — meaning it doesn’t conform to standard email address formatting rules.
Email servers following RFC 5321 reject addresses that contain prohibited characters, missing required elements, or structural malformations.
Valid vs invalid syntax
Email addresses must follow a specific pattern: local-part@domain. Common violations include:
| Valid | Invalid | Issue |
| john.doe@company.com | john doe@company.com | Space in local part |
| user@example.org | userexample.org | Missing @ symbol |
| user+tag@domain.com | user<>@domain.com | Illegal characters |
| user@sub.domain.co | @domain.com | Empty local part |
Provider variations
Systems express 5.1.3 differently:
| Provider | Error Message |
| Microsoft | 550 5.1.3 Invalid address |
| Generic SMTP | 553 5.1.3 Invalid recipient address syntax |
| Postfix | 550 5.1.3 Bad recipient address syntax |
The 553 variant (vs 550) appears in some implementations but means the same thing — permanent rejection due to syntax.
Vs related codes
| Code | Problem Type | Example |
| 550 5.1.1 | Mailbox doesn’t exist | Valid format, but john.doe not found |
| 550 5.1.2 | Domain invalid | Valid format, but company.con doesn’t exist |
| 550 5.1.3 | Syntax invalid | john doe@company — malformed structure |
Why does the 550 5.1.3 error occur?
Syntax errors typically originate from data collection problems or application bugs — not from the recipient’s mail server.
Missing @ symbol
The most basic violation. Addresses entered without @ can’t route anywhere. Common sources:
- Rushed manual entry
- Copy errors from documents
- Form autofill glitches
Illegal characters
RFC 5321 permits limited characters in the local part. Problematic characters include:
- Parentheses ( )
- Angle brackets < >
- Spaces (unquoted)
- Commas, semicolons
- Unescaped special characters
Display name in envelope
SMTP envelopes require the bare address (user@domain.com), not display name format (“John Doe” <user@domain.com>). Applications that pass display names into RCPT TO commands trigger 5.1.3.
Hidden characters
Addresses copied from PDFs, Word documents, or rich text often contain invisible characters:
- Soft hyphens
- Zero-width joiners
- Non-breaking spaces
- Unicode look-alikes (Cyrillic “а” vs Latin “a”)
Application encoding issues
Mail libraries that improperly encode addresses can corrupt them during transmission. UTF-8 handling errors particularly affect international addresses.
How do you fix 550 5.1.3?
Syntax errors require examining both your data and your sending application.
Verify address format
Copy the exact address from your bounce notification and inspect:
- Does it contain @?
- Are there spaces?
- Any unusual characters?
- Starts or ends with prohibited characters?
For programmatic validation, use regex patterns that match RFC 5321:
^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$
(This simplified pattern catches common violations but doesn’t cover all edge cases.)
Clear auto-complete
Cached malformed addresses perpetuate the problem:
- Outlook: Type address → highlight → Delete key
- Gmail: Hover → click X
- Apple Mail: Window → Previous Recipients → remove
Check SMTP authentication
Some 5.1.3 errors occur when the mail client isn’t properly authenticated. Verify settings:
- Outgoing server requires authentication: Enabled
- Username/password: Correct
- Port and encryption: Match provider requirements
Missing authentication can cause servers to reject addresses they’d otherwise accept.
Fix data source
If 5.1.3 errors cluster around specific imports or forms:
- Add client-side validation to entry forms
- Sanitize imported data (strip hidden characters)
- Reject addresses missing @ at point of entry
An email validation API provides real-time syntax checking plus deliverability verification.
Fix application code
For developers: examine how your application constructs SMTP commands:
- Ensure RCPT TO contains only the bare address
- Strip display names before envelope construction
- Handle encoding properly for international addresses
- Log the exact RCPT TO value when debugging
How do you prevent this error?
Syntax errors are entirely preventable with proper validation.
Validate at entry
Form-level validation should reject:
- Missing @
- Invalid domain structure
- Empty local or domain parts
- Spaces and prohibited characters
Real-time validation catches errors immediately, before they reach your database.
Sanitize imports
Data imported from spreadsheets, CRMs, or external sources often contains formatting artifacts. Build sanitization routines that:
- Normalize Unicode characters
- Strip leading/trailing whitespace
- Remove non-printable characters
- Flag addresses failing basic validation
Test sending paths
Periodically verify your sending application produces valid SMTP commands:
- Send test messages and examine transcripts
- Check encoding for international recipients
- Verify RCPT TO shows bare addresses
- Enable detailed SMTP logging
Still stuck after trying the fix?
Some email errors are easy to clear. Others point to deeper deliverability issues involving authentication, sender reputation, blacklisting, routing, or mailbox provider policy. If you would rather have an expert review it, speak with an email delieverability consultant for free and we can help diagnose the issue and fix it on your behalf.
We look beyond the error message itself to find what is actually breaking delivery, trust, or inbox placement.
From SPF, DKIM, and DMARC to blacklist cleanup, DNS alignment, and sending setup, we can guide or implement the fix.
We assess whether the error is part of a bigger pattern hurting opens, replies, and overall campaign performance.
Talk to a real deliverability expert, get honest guidance, and see the next best step without pressure or upsells.
When should you book a consultation? If the error keeps coming back, affects multiple mailboxes or domains, started after an ESP or DNS change, or is tied to spam placement, low inboxing, high bounce rates, or authentication failures, it is usually faster to get an expert involved early.
Frequently asked questions
Here are some commonly asked questions about this error:
Both 550 and 553 indicate permanent failure. The 553 code specifically means “requested action not taken: mailbox name not allowed” — essentially the same as 550 5.1.3. Different mail server implementations choose different base codes, but both are hard bounces requiring address correction.
Yes. Hidden characters (non-breaking spaces, zero-width joiners) make addresses appear valid visually while being syntactically malformed. Copy the address to a plain text editor and examine character by character, or use a hex viewer to spot invisible characters.
Almost always the sender’s. The error means your address data is malformed — the receiving server simply enforces formatting rules. Fix your data collection, validation, or sending application to prevent malformed addresses.

