Telnet SMTP Test: Manual Command-Line Diagnosis
Telnet SMTP Test
A telnet SMTP test manually connects to a mail server over the command line to test the SMTP conversation step by step, useful for low-level diagnosis of sending problems.
What it's for
Telnet (or openssl for encrypted connections) lets you type the SMTP commands by hand, HELO, MAIL FROM, RCPT TO, and read the server's raw responses. It's the lowest-level way to see exactly where a send fails, favoured by sysadmins debugging a stubborn server issue.
The modern caveat
Plain telnet on port 25 rarely works from a typical network now, since outbound 25 is widely blocked and modern servers require TLS. In practice you'll use openssl s_client for an encrypted session on 587 or 465. For most people a web-based smtp test is faster and just as diagnostic.
The bigger picture
A manual SMTP test proves the server talks, not that mail reaches the inbox. That still depends on authentication and reputation.
FAQ
What is a telnet SMTP test?
Manually connecting to a mail server over the command line to type SMTP commands and read the raw responses, used for low-level diagnosis of sending problems.
Does telnet still work for SMTP testing?
Plain telnet on port 25 is usually blocked now, and modern servers require TLS, so you'll typically use openssl s_client on port 587 or 465 instead.