コード例 #1
0
 public EmailAttachment Add(byte[] fileBytes, string saveAs)
 {
     EmailAttachment o_Attachment = new EmailAttachment(fileBytes, saveAs);
     this.Add(o_Attachment);
     return o_Attachment;
 }
コード例 #2
0
 public void Add(EmailAttachment emailAttachment)
 {
     this.List.Add(emailAttachment);
 }
コード例 #3
0
 public EmailAttachment Add(string originalName, string saveAs)
 {
     EmailAttachment o_Attachment = new EmailAttachment(originalName, saveAs);
     this.Add(o_Attachment);
     return o_Attachment;
 }