Reputation: 30915
im looking for code example or tutorial on what i need to do to code sending email via email client ( that i already have ) that will support ssl authentication i guess using open ssl
Upvotes: 0
Views: 3512
Reputation: 3176
Boost.Asio and the Sockets Library both have SSL support. The latter has SMTP server class but unfortunately no client. I found an example client but it uses the simple C socket.h.
Update: Here are some real working examples. They all support SSL or TLS.
Upvotes: 1