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