Created
March 8, 2009 12:02
-
-
Save mbadran/75748 to your computer and use it in GitHub Desktop.
send mail via smtp
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 127.0.0.1 25 | |
HELO mydomain.com | |
MAIL FROM:<[email protected]> | |
RCPT TO:<[email protected]> | |
DATA | |
Date: Thu, 7 Jul 2005 13:32:19 +1000 (EST) | |
From: <[email protected]> | |
To: <[email protected]> | |
Subject: Testing | |
Hello, | |
This is a test. | |
Goodbye. | |
. | |
QUIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment