public System.Threading.Tasks.Task <OnTime.Web.MailService.SendEmalResponse> SendEmalAsync(string receiveMailAddress, string subject, string bodyInfo, string SendEmail, string SendPassword) { OnTime.Web.MailService.SendEmalRequest inValue = new OnTime.Web.MailService.SendEmalRequest(); inValue.Body = new OnTime.Web.MailService.SendEmalRequestBody(); inValue.Body.receiveMailAddress = receiveMailAddress; inValue.Body.subject = subject; inValue.Body.bodyInfo = bodyInfo; inValue.Body.SendEmail = SendEmail; inValue.Body.SendPassword = SendPassword; return(((OnTime.Web.MailService.WebServiceSoap)(this)).SendEmalAsync(inValue)); }
public bool SendEmal(string receiveMailAddress, string subject, string bodyInfo, string SendEmail, string SendPassword) { OnTime.Web.MailService.SendEmalRequest inValue = new OnTime.Web.MailService.SendEmalRequest(); inValue.Body = new OnTime.Web.MailService.SendEmalRequestBody(); inValue.Body.receiveMailAddress = receiveMailAddress; inValue.Body.subject = subject; inValue.Body.bodyInfo = bodyInfo; inValue.Body.SendEmail = SendEmail; inValue.Body.SendPassword = SendPassword; OnTime.Web.MailService.SendEmalResponse retVal = ((OnTime.Web.MailService.WebServiceSoap)(this)).SendEmal(inValue); return(retVal.Body.SendEmalResult); }
System.Threading.Tasks.Task <OnTime.Web.MailService.SendEmalResponse> OnTime.Web.MailService.WebServiceSoap.SendEmalAsync(OnTime.Web.MailService.SendEmalRequest request) { return(base.Channel.SendEmalAsync(request)); }
OnTime.Web.MailService.SendEmalResponse OnTime.Web.MailService.WebServiceSoap.SendEmal(OnTime.Web.MailService.SendEmalRequest request) { return(base.Channel.SendEmal(request)); }