Avinash
Avinash

Reputation: 13257

SMTP email on Windows using C++

Is there any Windows Native API to send SMTP based message using C++

Upvotes: 1

Views: 2817

Answers (1)

Joe
Joe

Reputation: 42627

There is not a native API. You will need a 3rd party component or to build this yourself.

Useful information in this thread:

https://stackoverflow.com/questions/58210/c-smtp-example

Upvotes: 2

Related Questions