Esempio n. 1
0
 public System.Threading.Tasks.Task <ContactManager.CPMail.EmailListResponse> EmailListAsync(string listCode, string mailFrom, string subject, string body, bool isBodyHtml)
 {
     ContactManager.CPMail.EmailListRequest inValue = new ContactManager.CPMail.EmailListRequest();
     inValue.Body            = new ContactManager.CPMail.EmailListRequestBody();
     inValue.Body.listCode   = listCode;
     inValue.Body.mailFrom   = mailFrom;
     inValue.Body.subject    = subject;
     inValue.Body.body       = body;
     inValue.Body.isBodyHtml = isBodyHtml;
     return(((ContactManager.CPMail.ServiceSoap)(this)).EmailListAsync(inValue));
 }
Esempio n. 2
0
 public void EmailList(string listCode, string mailFrom, string subject, string body, bool isBodyHtml)
 {
     ContactManager.CPMail.EmailListRequest inValue = new ContactManager.CPMail.EmailListRequest();
     inValue.Body            = new ContactManager.CPMail.EmailListRequestBody();
     inValue.Body.listCode   = listCode;
     inValue.Body.mailFrom   = mailFrom;
     inValue.Body.subject    = subject;
     inValue.Body.body       = body;
     inValue.Body.isBodyHtml = isBodyHtml;
     ContactManager.CPMail.EmailListResponse retVal = ((ContactManager.CPMail.ServiceSoap)(this)).EmailList(inValue);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <ContactManager.CPMail.EmailListResponse> ContactManager.CPMail.ServiceSoap.EmailListAsync(ContactManager.CPMail.EmailListRequest request)
 {
     return(base.Channel.EmailListAsync(request));
 }
Esempio n. 4
0
 ContactManager.CPMail.EmailListResponse ContactManager.CPMail.ServiceSoap.EmailList(ContactManager.CPMail.EmailListRequest request)
 {
     return(base.Channel.EmailList(request));
 }