Supported commands
HELO
Initiates an SMTP session with the server. Syntax:HELO <domain>
Response: 250 Hello
Example:
EHLO
Extended SMTP greeting command. Functions identically to HELO in the current implementation. Syntax:EHLO <domain>
Response: 250 Hello
Example:
MAIL FROM
Specifies the sender’s email address for the message. Syntax:MAIL FROM:<sender@example.com>
Response: 250 Sender OK
Example:
RCPT TO
Specifies the recipient’s email address. The server extracts the username portion and stores it for the email record. Syntax:RCPT TO:<recipient@zapmail.parth.lol>
Response: 250 Recipient OK
Example:
DATA
Initiates the message data transfer. The server accepts all lines until a line containing only a period (.) is received.
Syntax: DATA
Response: 354 End data with <CR><LF>.<CR><LF>
After data is received:
- Success:
250 OK: Message accepted - Error:
550 Error storing email
QUIT
Closes the SMTP session and disconnects. Syntax:QUIT
Response: 221 Bye
Example:
NOOP
No operation command. The server acknowledges but performs no action. Syntax:NOOP
Response: 250 OK
Example:
VRFY
Verify command. Not supported by the Zapmail server. Syntax:VRFY
Response: 250 VRFY not supported
EXPN
Expand command. Not supported by the Zapmail server. Syntax:EXPN
Response: 250 EXPN not supported
HELP
Displays a list of supported commands. Syntax:HELP
Response: