Source code of Windows XP (NT5)
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

//
// 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);