예제 #1
0
파일: Recipient.cs 프로젝트: x893/WDS
 public Recipient(string address, string displayName, NewWDS.MapiMailMessage.RecipientType recipientType)
 {
     this.RecipientType = NewWDS.MapiMailMessage.RecipientType.To;
     this.Address = address;
     this.DisplayName = displayName;
     this.RecipientType = recipientType;
 }
예제 #2
0
파일: Recipient.cs 프로젝트: x893/WDS
 public Recipient(string address, NewWDS.MapiMailMessage.RecipientType recipientType)
 {
     this.RecipientType = NewWDS.MapiMailMessage.RecipientType.To;
     this.Address = address;
     this.RecipientType = recipientType;
 }