Hello all 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
A:
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.
stribika
2009-08-05 10:44:18
hi,well i have no problem to implement simple smtp client .but i don't know how to implement in code the combination of ssl/tls authentication that is "real code " this is what im looking for
2009-08-05 11:17:10
no one knows how to implement simple smtp tls client example ?
2009-08-06 09:15:34
I added some open source SMTP clients to my answer.
stribika
2009-08-06 12:29:32
Thanks , im digging the code to found how they implement ssl
2009-08-06 18:53:03
Are you going to re-implement or copy that from those places? Plenty of libraries that do that which you can use (and update).
Kris Kumler
2009-10-10 01:39:29