SMTP_C.C
上传用户:sunrenlu
上传日期:2022-06-13
资源大小:1419k
文件大小:0k
源码类别:

操作系统开发

开发平台:

DOS

  1. /*
  2.  * smtp_c.c - sample smtp client
  3.  *          - must have smtp.gateway=xxx.xxx.xxx.xxx in TCP.CFG file
  4.  *
  5.  */
  6. #include <rtos.h>
  7. #include <net.h>
  8. #include <smtpcli.h>
  9. main(int argc, char **argv)
  10. {
  11.     char *mailfrom = "someone";
  12.     kdebug = 1;
  13.     rt_init( 100 );
  14.     sock_init();
  15.     if ( argc < 2 )
  16.         rt_halt("ERROR must specify an Email address to send this message to");
  17.     smtp_client( 0, mailfrom, argv[1], "hi there","a message");
  18. }