AddAttachment Method
Adds FileName as an attachment.
Syntax
public void addAttachment(String fileName);
Remarks
This method adds the file name as an attachment, the full list of attachments is contained in the Attachments property.
Example (Adding an Attachment)
component.AddAttachment(
"C:\file1.zip"
);
component.AddAttachment(
"C:\file2.zip"
);
component.Send();
component.Attachments.Add(
new
nsoftware.IPWorks.FileAttachment(
"name"
,
"C:\file.txt"
));