MailMessage.Attachments Property

Definition

Specifies the collection of attachments that are transmitted with the message. Recommended alternative: System.Net.Mail.

public:
 property System::Collections::IList ^ Attachments { System::Collections::IList ^ get(); };
public System.Collections.IList Attachments { get; }
member this.Attachments : System.Collections.IList
Public ReadOnly Property Attachments As IList

Property Value

An IList collection of MailAttachment objects.

Examples

MailMessage MyMessage = new MailMessage();
MyMessage.Attachments.Add(new MailAttachment(fileName1));
MyMessage.Attachments.Add(new MailAttachment(fileName2, MailEncoding.UUEncode));
Dim MyMessage As MailMessage = new MailMessage()
MyMessage.Attachments.Add(New MailAttachment(fileName1))
MyMessage.Attachments.Add(New MailAttachment(fileName2, MailEncoding.UUEncode))

Remarks

New attachments can be added to the mail message by a call to Message.Attachments.Add(MyMailMessage). See Send for an example of SmtpMail usage.

Applies to