Ejemplo n.º 1
0
 /// <remarks/>
 public void SendEmailAndAttachmentsAsync(string EmailAddress, string CCEmailAddress, string title, string body, UpAttachments[] attachments, bool onebyone) {
     this.SendEmailAndAttachmentsAsync(EmailAddress, CCEmailAddress, title, body, attachments, onebyone, null);
 }
Ejemplo n.º 2
0
 /// <remarks/>
 public void SendEmailAndAttachmentsAsync(string EmailAddress, string CCEmailAddress, string title, string body, UpAttachments[] attachments, bool onebyone, object userState) {
     if ((this.SendEmailAndAttachmentsOperationCompleted == null)) {
         this.SendEmailAndAttachmentsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSendEmailAndAttachmentsOperationCompleted);
     }
     this.InvokeAsync("SendEmailAndAttachments", new object[] {
                 EmailAddress,
                 CCEmailAddress,
                 title,
                 body,
                 attachments,
                 onebyone}, this.SendEmailAndAttachmentsOperationCompleted, userState);
 }
Ejemplo n.º 3
0
 public void SendEmailAndAttachments(string EmailAddress, string CCEmailAddress, string title, string body, UpAttachments[] attachments, bool onebyone) {
     this.Invoke("SendEmailAndAttachments", new object[] {
                 EmailAddress,
                 CCEmailAddress,
                 title,
                 body,
                 attachments,
                 onebyone});
 }