libCurl for SMTP | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

libCurl for SMTP

Anyone know how to use libCurl for email transfer ? There's example code on their site, but the operations are not explained.

22nd Dec 2016, 2:10 PM
Blood
Blood - avatar
1 Answer
+ 2
curl --url 'smtps://smtp.gmail.com:465' --ssl-reqd \ --mail-from '[email protected]' --mail-rcpt '[email protected]' \ --upload-file mail.txt --user '[email protected]:password' --insecure mail.txt file contents:- From: "User Name" <[email protected]> To: "John Smith" <[email protected]> Subject: This is a test Hi John, I’m sending this mail with curl thru my gmail account. Bye!
14th May 2019, 6:03 PM
Mayank
Mayank - avatar