9:48in productionCh. 1 · What SMTP actually is/ 9:48 · ceiling 15 min
Systems · Internet culture
Simple Mail Transfer Protocol
1982
SMTP is not an email protocol—it’s a relay protocol that assumes trust, ignores identity, and outsources security to later layers.
SMTP is a minimal, text-based relay protocol. It enables interoperable server-to-server mail exchange but provides no sender identity, no encryption, and no delivery guarantees. Its longevity stems from its narrow scope—not its completeness.
product managers treating SMTP as a user-facing feature
The written brief1 min read
What it is and the problem it solves
SMTP is an Internet standard protocol for transmitting email between servers. It solves the problem of interoperable, store-and-forward message routing across heterogeneous networks.
How it works
SMTP is a text-based, connection-oriented protocol that runs over TCP. It defines how mail servers and message transfer agents exchange messages using a series of human-readable commands and responses.
What works
Server-to-server message relaying works reliably. The command-response syntax is simple and robust. Port 25 remains the universal channel for mail exchange between MTAs.
What does not
SMTP does not authenticate senders by default. It does not encrypt traffic unless extended with STARTTLS or run over TLS-wrapped ports. It does not guarantee delivery, prevent spoofing, or handle end-user authentication.
What it changes
SMTP replaced FTP as the dedicated transport for email on ARPANET. It established a standardised, server-to-server relay model that persists today—despite requiring decades of extensions to support basic security and submission workflows.
Is it worth your time
Yes—if you maintain email infrastructure, debug delivery failures, or design systems that interoperate with legacy mail routing. No—if you assume modern email security or user identity is built in.