Skip to content

Instantly share code, notes, and snippets.

@timendum
Created July 27, 2011 10:03
Show Gist options
  • Save timendum/1109052 to your computer and use it in GitHub Desktop.
Save timendum/1109052 to your computer and use it in GitHub Desktop.
Telnet SMTP mail
telnet server.com 25
telnet-ssl server.com 465
HELO server.com
MAIL FROM: <me@mine.com>
RCPT TO: <you@your.com>
RCPT TO: <he@your.com>
DATA
From: me@mine.com
To: you@your.com
Subject: Hi there!
This is a test message!
.
QUIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment