Skip to content

SMTP ​

SMTP stands for Simple Mail Transfer Protocol.

It is the standard protocol used to send emails between mail servers or from a mail client to a server. SMTP defines how email messages are formatted, transferred, and relayed across networks.


πŸ”Œ What SMTP Does (and Doesn’t Do) ​

SMTP doesSMTP does not
Send email from client to serverRetrieve emails from mailbox
Send email server to serverStore emails long-term
Relay or forward emailDownload messages to your device

πŸ”§ Common SMTP Ports ​

PortUsage
25Server-to-server mail (original SMTP)
587Client-to-server (modern standard) βœ…
465SMTP over SSL (deprecated, still used)

πŸ€” Bonus: What a Typical SMTP Exchange Looks Like ​

text
HELO client.example.com
MAIL FROM:<you@example.com>
RCPT TO:<friend@example.net>
DATA
Subject: Test
Hello World.
.
QUIT

This is the raw SMTP conversation between mail servers or clients.


βœ… TL;DR ​

SMTP stands forSimple Mail Transfer Protocol
Used forSending email from client to server or between servers
Defined byRFC 5321 and related standards
Works withDNS (MX records), optional with TLS, SPF, DKIM, DMARC