Skip to content

Instantly share code, notes, and snippets.

@Tzolkin
Forked from james2doyle/curl-smtp-email.sh
Created May 22, 2019 15:53
Show Gist options
  • Save Tzolkin/057e2c1ef23cf00eda6989713562eb46 to your computer and use it in GitHub Desktop.
Save Tzolkin/057e2c1ef23cf00eda6989713562eb46 to your computer and use it in GitHub Desktop.
Send SMTP email using cURL
curl --connect-timeout 15 -v --insecure "smtp://smtp.example.com:25" -u "username:password"
\ --mail-from "sender@example.com" --mail-rcpt "destination@example.com"
\ -T email-contents.txt --ssl
From: "Sender Name" <sender@example.com>
To: "Destination Email" <destination@example.com>
Subject: Sending Using Curl
Hello,
I'm sending this mail with curl.
Bye!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment