Skip to content

Instantly share code, notes, and snippets.

@tachesimazzoca
Last active May 13, 2019 13:22
Show Gist options
  • Save tachesimazzoca/bf035f2dbf04084f8e523c1ff7437695 to your computer and use it in GitHub Desktop.
Save tachesimazzoca/bf035f2dbf04084f8e523c1ff7437695 to your computer and use it in GitHub Desktop.
Mail Cheat Sheet

Mail Cheat Sheet

RFC

Sending an E-mail Message via. Command Line Tools

$ nc <smtp.example.net> 25
EHLO <hostname>
MAIL FROM: <sender@example.net>
RCPT TO: <receiver@example.net>
DATA
From: sender@example.net
To: receivere@example.net
Subject: Test message

This is a test message.
.
QUIT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment