- On Windows:
- Go to Control Panel > Programs > Turn Windows Features On or Off
- Enable "Telnet Client"
- On macOS / Linux: Telnet is usually pre-installed. It can be used by using the
telnet
command
- Open your command line / terminal
- Connect to the SMTP server using:
telnet <SMTP Server Address> <Port>
- For Example:
telnet smtp.gmail.com 587
- Expect a connection message: For Example: 220 smtp.gmail.com ESMTP Postfix indicating the connection is successful
- Identify yourself
HELO <domainname.com>
For Example:HELO example.com
- The server should respond with 250 OK
- If authentication is needed, use:
AUTH LOGIN
- Provide the base64-encoded username
- Provide the base64-encoded password
- If successful, the server will respond with 235 Authentication successful
- Start the Mail Transaction
MAIL FROM:<[email protected]>
- Response: 250 OK
- Specify the Recipient
RCPT TO:<[email protected]>
- Response: 250 OK
- Start composing the email
DATA
- Response: 354 End data with .
- Enter the Email Body
- End the email with a period (.) on a new line
Subject: Test Email
From: [email protected]
To: [email protected]
This is a test email sent via Telnet.
- Response: 250 OK
- Exit the SMTP session
QUIT
- Response: 221 Bye