mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
339 B
17 lines
339 B
//
|
|
// SMTP - Simple Mail Transfer Protocol
|
|
//
|
|
// Julian Jiggins, January 13th 1997
|
|
//
|
|
|
|
//
|
|
// SMTPSendMessage -
|
|
// loads winsock,
|
|
// connects to the specified server on the SMTP port 25
|
|
// sends the szMessage to the szAddress
|
|
//
|
|
BOOL SMTPSendMessage(
|
|
char * szServer,
|
|
char * szToAddress,
|
|
char * szFromAddress,
|
|
char * szMessage);
|