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 'username@gmail.com' --mail-rcpt 'john@example.com' \ --upload-file mail.txt --user 'username@gmail.com:password' --insecure mail.txt file contents:- From: "User Name" <username@gmail.com> To: "John Smith" <john@example.com> 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