add_attachment Method
Adds FileName as an attachment.
Syntax
def add_attachment(file_name: str) -> None: ...
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.AttachmentCount = 1;
component.AttachmentName(0) =
"name"
;
component.AttachmentFile(0) =
"C:\file.txt"
;