Skip to content

Instantly share code, notes, and snippets.

@hoco
Created June 19, 2012 07:02
Show Gist options
  • Save hoco/2952704 to your computer and use it in GitHub Desktop.
Save hoco/2952704 to your computer and use it in GitHub Desktop.
telnetでメール送信
# 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