Last updated
Was this helpful?
Was this helpful?
#
< NOOP
> 250 OK
< EHLO your_hostname
> MM4 server babble
< AUTH LOGIN
> 334 VXNlcm5hbWU6
< base64-encoded-system-id
> 334 UGFzc3dvcmQ6
< base64-encoded-api-key
> 235 Authentication successful
< MAIL FROM:<E164-number@hostname>
> 250 Sender OK
< RCPT TO:<E164-number@hostname>
> 250 Recipient OK
< DATA
> 354 enter mail, end with line containing only '.'
< your-mms-content-here
< .
> 250 queued as <message-id>
< QUIT
> 221 BYE#
# AUTH before HELO
503 ERROR: send EHLO first
# RCPT or MAIL before EHLO
503 ERROR: send EHLO or HELO first
# RCPT before MAIL
503 ERROR: send MAIL first
# DATA before MAIL
503 ERROR: need MAIL command
# DATA before RCPT
503 ERROR: need RCPT command