Exemplo n.º 1
0
 public System.Threading.Tasks.Task <HPPortal.Web.MailService.SendMailMessagesResponse> SendMailMessagesAsync(string froms, string to, string bcc, string cc, string subject, string body, string attachment1, string attachment2)
 {
     HPPortal.Web.MailService.SendMailMessagesRequest inValue = new HPPortal.Web.MailService.SendMailMessagesRequest();
     inValue.Body             = new HPPortal.Web.MailService.SendMailMessagesRequestBody();
     inValue.Body.froms       = froms;
     inValue.Body.to          = to;
     inValue.Body.bcc         = bcc;
     inValue.Body.cc          = cc;
     inValue.Body.subject     = subject;
     inValue.Body.body        = body;
     inValue.Body.attachment1 = attachment1;
     inValue.Body.attachment2 = attachment2;
     return(((HPPortal.Web.MailService.MailServiceSoap)(this)).SendMailMessagesAsync(inValue));
 }
Exemplo n.º 2
0
 public void SendMailMessages(string froms, string to, string bcc, string cc, string subject, string body, string attachment1, string attachment2)
 {
     HPPortal.Web.MailService.SendMailMessagesRequest inValue = new HPPortal.Web.MailService.SendMailMessagesRequest();
     inValue.Body             = new HPPortal.Web.MailService.SendMailMessagesRequestBody();
     inValue.Body.froms       = froms;
     inValue.Body.to          = to;
     inValue.Body.bcc         = bcc;
     inValue.Body.cc          = cc;
     inValue.Body.subject     = subject;
     inValue.Body.body        = body;
     inValue.Body.attachment1 = attachment1;
     inValue.Body.attachment2 = attachment2;
     HPPortal.Web.MailService.SendMailMessagesResponse retVal = ((HPPortal.Web.MailService.MailServiceSoap)(this)).SendMailMessages(inValue);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <HPPortal.Web.MailService.SendMailMessagesResponse> HPPortal.Web.MailService.MailServiceSoap.SendMailMessagesAsync(HPPortal.Web.MailService.SendMailMessagesRequest request)
 {
     return(base.Channel.SendMailMessagesAsync(request));
 }
Exemplo n.º 4
0
 HPPortal.Web.MailService.SendMailMessagesResponse HPPortal.Web.MailService.MailServiceSoap.SendMailMessages(HPPortal.Web.MailService.SendMailMessagesRequest request)
 {
     return(base.Channel.SendMailMessages(request));
 }