Tuesday, July 14, 2009

C++ mail code?

I need a code in C++ to send email's so far I have not been able to figure it out and none of the sites on the internet have been successful. Please Help

C++ mail code?
You *could* write SMTP support from the ground up by yourself, but why re-invent the wheel?





Either find a C or C++ library you can use, or use the operating system calls.





If you're on a Unix system, it probably is using sendmail or qmail already, which you can tap into in order to send email. See their documentation for details.





If you're using Windows, check out the MAPI API (part of Win32). Look it up on the msdn.microsoft.com web site to see how to use it.


No comments:

Post a Comment