Example #1
0
 public EmailMessage(string from, string to, string subject, string body)
 {
     this.From             = from;
     this.To               = to;
     this.Subject          = subject;
     this.Body             = body;
     this.TemplateFileName = string.Empty;
     this.FieldList        = new EmailFieldValueCollection();
 }
Example #2
0
 public EmailMessage()
 {
     this.From             = string.Empty;
     this.To               = string.Empty;
     this.Subject          = string.Empty;
     this.Body             = string.Empty;
     this.TemplateFileName = string.Empty;
     this.FieldList        = new EmailFieldValueCollection();
 }