Esempio n. 1
0
 public Mailable <T> To(MailRecipient recipient) =>
 this.To(new MailRecipient[] { recipient });
Esempio n. 2
0
 public Mailable <T> ReplyTo(string address)
 {
     this._replyTo = new MailRecipient(address);
     return(this);
 }
Esempio n. 3
0
 public Mailable <T> From(MailRecipient recipient)
 {
     this._from = recipient;
     return(this);
 }
Esempio n. 4
0
 public Mailable <T> ReplyTo(MailRecipient replyTo)
 {
     this._replyTo = replyTo;
     return(this);
 }