Telnet commands to send email
A quick way to send an email using telnet tool only.
$ telnet smtpserver.example.com 25
ehlo example.com
mail from: <sender@example.com>
rcpt to: <recipient@example.com>
data
subject: IGNORE test message
IGNORE test body
.
quit