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