SMTP

SMTP 214 Help Message vs 354 Start Mail Input

SMTP 214 (Help Message) is a 2xx Positive Completion response, while 354 (Start Mail Input) is a 3xx Positive Intermediate response. 214 indicates that a help message response containing information about the server's supported commands or a specific command's usage. This is a human-readable reply to the HELP command. In contrast, 354 means that the server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF).

Descrição

A help message response containing information about the server's supported commands or a specific command's usage. This is a human-readable reply to the HELP command.

Quando você o vê

After sending the HELP command to the SMTP server. The response lists available commands or provides usage details for the command you specified.

Como corrigir

No fix needed — this is a normal informational response. Use the provided help text to understand which commands the server supports.

Descrição

The server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF).

Quando você o vê

After sending the DATA command. The server is now waiting for you to type or stream the email message, ending with a dot on its own line.

Como corrigir

Send your message content followed by a line with just a period (.) to signal the end. If you get an error after this, check that your message does not contain a bare period on a line by itself within the body.

Diferenças principais

1.

214 is a 2xx Positive Completion response, while 354 is a 3xx Positive Intermediate response.

2.

SMTP 214: A help message response containing information about the server's supported commands or a specific command's usage. This is a human-readable reply to the HELP command.

3.

SMTP 354: The server is ready to receive the message body. The client should begin sending the email content (headers and body) and terminate with a single line containing only a period (CRLF.CRLF).

4.

You encounter 214 when after sending the HELP command to the SMTP server. The response lists available commands or provides usage details for the command you specified.

5.

You encounter 354 when after sending the DATA command. The server is now waiting for you to type or stream the email message, ending with a dot on its own line.

Quando usar qual

For 214 (Help Message): No fix needed — this is a normal informational response. Use the provided help text to understand which commands the server supports. For 354 (Start Mail Input): Send your message content followed by a line with just a period (.) to signal the end. If you get an error after this, check that your message does not contain a bare period on a line by itself within the body.

Saiba mais