Last active
August 29, 2015 14:25
-
-
Save skarllot/729f659c3f9ccf90bd2a to your computer and use it in GitHub Desktop.
Using Telnet to connect to SMTP server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
telnet 25 | |
helo example.com | |
-250 OK | |
mail from: | |
-250 OK - mail from | |
rcpt to: | |
-250 OK - Recipient | |
data | |
-354 Send data. End with CRLF.CRLF | |
To: | |
From: | |
Subject: | |
. | |
-250 OK | |
quit | |
-221 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment