Created
June 19, 2012 07:02
-
-
Save hoco/2952704 to your computer and use it in GitHub Desktop.
telnetでメール送信
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 mailsrv 25 | |
HELO mailsrv | |
MAIL FROM: [email protected] | |
RCPT TO: [email protected] | |
DATA | |
subject: test | |
from: [email protected] | |
to: [email protected] | |
Hello world. | |
. | |
QUIT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment