Skip to content

Instantly share code, notes, and snippets.

@Dev1an
Created October 7, 2020 13:50
Show Gist options
  • Save Dev1an/f6960b888cd87c9588245f09e6aaaaa4 to your computer and use it in GitHub Desktop.
Save Dev1an/f6960b888cd87c9588245f09e6aaaaa4 to your computer and use it in GitHub Desktop.
Send a mail using SMTP
EHLO domain.com.
AUTH LOGIN
ZGFtaWFhbkBpY2xvdWQuY29t
<App Specific Password here>
mail from:<sender@domain.com>
rcpt to:<receiver@doman.com>
DATA
From: Sender <sender@domain.com>
Subject: Simple Mail Transfer
To: receiver@doman.com
Message here
.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment