Skip to content

Instantly share code, notes, and snippets.

@mbadran
Created March 8, 2009 12:02
Show Gist options
  • Save mbadran/75748 to your computer and use it in GitHub Desktop.
Save mbadran/75748 to your computer and use it in GitHub Desktop.
send mail via smtp
% 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