Esempio n. 1
0
 public bool Add(string from, string toRecipient, string ccRecipients, string bccRecipients, string subject, string body, Priority priority)
 {
     return(Add(from, toRecipient, ccRecipients, bccRecipients, subject, body, MailQueue.GetDateByPriority(priority), null));
 }
Esempio n. 2
0
 public bool Add(string from, string toRecipient, string ccRecipients, string subject, string body)
 {
     return(Add(from, toRecipient, ccRecipients, String.Empty, subject, body, MailQueue.GetDateByPriority(Priority.Medium), null));
 }
Esempio n. 3
0
 public bool Add(string from, string toRecipient, string ccRecipients, string bccRecipients, string subject, string body, List <MailQueueAttachment> attachments)
 {
     return(Add(from, toRecipient, ccRecipients, bccRecipients, subject, body, MailQueue.GetDateByPriority(Priority.Medium), attachments));
 }
Esempio n. 4
0
 public bool Add(string from, string toRecipient, string subject, string body, MailQueueAttachment attachment)
 {
     return(Add(from, toRecipient, String.Empty, String.Empty, subject, body, MailQueue.GetDateByPriority(Priority.Medium), new List <MailQueueAttachment> {
         attachment
     }));
 }