SMTP 220 Service Ready vs 550 Mailbox Not Found
SMTP 220 (Service Ready) is a 2xx Positive Completion response, while 550 (Mailbox Not Found) is a 5xx Permanent Negative response. 220 indicates that the SMTP server is ready to begin the mail transaction. This greeting is the first response a client receives upon connecting, and it typically includes the server's hostname and software identificati In contrast, 550 means that the requested action was not taken because the mailbox does not exist or the recipient address is rejected by policy. This is a permanent failure indicating the address is invalid or blocked.
説明
The SMTP server is ready to begin the mail transaction. This greeting is the first response a client receives upon connecting, and it typically includes the server's hostname and software identification.
このコードが表示される場合
Immediately after establishing a TCP connection to the mail server on port 25, 465, or 587. This is the server's welcome banner confirming it is ready to accept commands.
解決方法
No fix needed — this confirms a successful connection. If you do not receive this greeting, check that the server is running, the port is correct, and no firewall is blocking the connection.
説明
The requested action was not taken because the mailbox does not exist or the recipient address is rejected by policy. This is a permanent failure indicating the address is invalid or blocked.
このコードが表示される場合
When sending to an email address that does not exist on the destination server, or when the server's policy rejects your message (e.g., anti-spam, sender verification failure).
解決方法
Verify the recipient's email address for typos. If the address is correct, the mailbox may have been deleted or your domain may be blocked — check your sender reputation and SPF/DKIM/DMARC records.
主な違い
220 is a 2xx Positive Completion response, while 550 is a 5xx Permanent Negative response.
SMTP 220: The SMTP server is ready to begin the mail transaction. This greeting is the first response a client receives upon connecting, and it typically includes the server's hostname and software identificati
SMTP 550: The requested action was not taken because the mailbox does not exist or the recipient address is rejected by policy. This is a permanent failure indicating the address is invalid or blocked.
You encounter 220 when immediately after establishing a TCP connection to the mail server on port 25, 465, or 587. This is the server's welcome banner confirming it is ready to accept commands.
You encounter 550 when when sending to an email address that does not exist on the destination server, or when the server's policy rejects your message (e.g., anti-spam, sender verification failure).
どちらをいつ使うか
For 220 (Service Ready): No fix needed — this confirms a successful connection. If you do not receive this greeting, check that the server is running, the port is correct, and no firewall is blocking the connection. For 550 (Mailbox Not Found): Verify the recipient's email address for typos. If the address is correct, the mailbox may have been deleted or your domain may be blocked — check your sender reputation and SPF/DKIM/DMARC records.