smtpcommands.h
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:1k
源码类别:

Email客户端

开发平台:

C/C++

  1. #ifndef __SMTPCOMMANDS_H
  2. #define __SMTPCOMMANDS_H  1
  3. #include "dnet.h"
  4. char *smtpGetErr(void);
  5. int smtpInitAuth(dsocket *sd, const char *auth, const char *user, const char *pass);
  6. int smtpInit(dsocket *sd, const char *domain);
  7. int smtpStartTls(dsocket *sd);
  8. int smtpSetMailFrom(dsocket *sd, const char *from);
  9. int smtpSetRcpt(dsocket *sd, const char *to);
  10. int smtpStartData(dsocket *sd);
  11. int smtpSendData(dsocket *sd, const char *data, size_t len);
  12. int smtpEndData(dsocket *sd);
  13. int smtpQuit(dsocket *sd);
  14. #endif /* __SMTPCOMMANDS_H */