-
-
Save semeion/7f3a15a2b7f787ad3432 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