tags:

views:

847

answers:

2

Duplicate:

c++ smtp example

any suggestion libraries?

A: 

I haven't used it, but libsmtp looks like a good start.

Adam Rosenfield
A: 

You can just open a socket connection to a SMTP server and send the SMTP command using write() function.

It is a text based protocol and you can even just telnet into a SMTP server and create a mail manually.

Just check out SMTP protocol on Wikipedia.

oykuo