What must be done to get a simple text message mailed to an internet mail address using VC++ (and any class libraries with MS VC++ 4.2)?
I want a function that takes 3 arguments:
int SendEmailMessage(char *emailaddress,char *subject,char *message);
Printable View
What must be done to get a simple text message mailed to an internet mail address using VC++ (and any class libraries with MS VC++ 4.2)?
I want a function that takes 3 arguments:
int SendEmailMessage(char *emailaddress,char *subject,char *message);
There are tons of sample e-mail classes on this site, just look under Internet Programming and find the E-Mail section.
-- Matt