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