示例#1
0
 public SendMailRequestRequest(FeatureDemandPlanning.Model.RADSMailService.JLRCommonHeader JLRCommonHeader, FeatureDemandPlanning.Model.RADSMailService.AuthHeader AuthHeader, string from, string to, string subject, string body, string cc, string bcc, string app)
 {
     this.JLRCommonHeader = JLRCommonHeader;
     this.AuthHeader      = AuthHeader;
     this.from            = from;
     this.to      = to;
     this.subject = subject;
     this.body    = body;
     this.cc      = cc;
     this.bcc     = bcc;
     this.app     = app;
 }
示例#2
0
 public string SendMailRequest(FeatureDemandPlanning.Model.RADSMailService.JLRCommonHeader JLRCommonHeader, FeatureDemandPlanning.Model.RADSMailService.AuthHeader AuthHeader, string from, string to, string subject, string body, string cc, string bcc, string app)
 {
     FeatureDemandPlanning.Model.RADSMailService.SendMailRequestRequest inValue = new FeatureDemandPlanning.Model.RADSMailService.SendMailRequestRequest();
     inValue.JLRCommonHeader = JLRCommonHeader;
     inValue.AuthHeader      = AuthHeader;
     inValue.from            = from;
     inValue.to      = to;
     inValue.subject = subject;
     inValue.body    = body;
     inValue.cc      = cc;
     inValue.bcc     = bcc;
     inValue.app     = app;
     FeatureDemandPlanning.Model.RADSMailService.SendMailRequestResponse retVal = ((FeatureDemandPlanning.Model.RADSMailService.SendMailSoap)(this)).SendMailRequest(inValue);
     return(retVal.SendMailRequestResult);
 }