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.

16 lines
339 B

  1. //
  2. // SMTP - Simple Mail Transfer Protocol
  3. //
  4. // Julian Jiggins, January 13th 1997
  5. //
  6. //
  7. // SMTPSendMessage -
  8. // loads winsock,
  9. // connects to the specified server on the SMTP port 25
  10. // sends the szMessage to the szAddress
  11. //
  12. BOOL SMTPSendMessage(
  13. char * szServer,
  14. char * szToAddress,
  15. char * szFromAddress,
  16. char * szMessage);