-
-
Save leonirlopes/f729ec97c6943e30309f186108331394 to your computer and use it in GitHub Desktop.
Send SMTP email using cURL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl --connect-timeout 15 -v --insecure "smtp://smtp.example.com:25" -u "username:password" | |
\ --mail-from "[email protected]" --mail-rcpt "[email protected]" | |
\ -T email-contents.txt --ssl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From: "Sender Name" <[email protected]> | |
To: "Destination Email" <[email protected]> | |
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