Attachments Property
The paths of files to attach to the message.
Syntax
property Attachments: TipwFileAttachmentList read get_Attachments write set_Attachments;
Remarks
This property contains the path of a file on your system that you would like to send as an attachment with your message. The component will open the file and encode its contents in MIME format.
Example (Adding an Attachment)
component.AddAttachment(
"C:\file1.zip"
);
component.AddAttachment(
"C:\file2.zip"
);
component.Send();
component.AttachmentCount = 1;
component.AttachmentName(0) =
"name"
;
component.AttachmentFile(0) =
"C:\file.txt"
;
This property is not available at design time.