RQHTTPService+RQPostEamilInfo.h 447 B

1234567891011121314151617181920212223
  1. //
  2. // RQHTTPService+RQPostEamilInfo.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2022/7/1.
  6. //
  7. #import "RQHTTPService.h"
  8. #define RQ_POST_EmailInfo @"student/email/info"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (RQPostEamilInfo)
  11. /**
  12. 发送邮件
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)postEmailInfoWithAddress:(NSString *)address dictCode:(NSInteger)dictCode;
  16. @end
  17. NS_ASSUME_NONNULL_END