AddAttachment Method

Adds FileName as an attachment.

Syntax

filemailercontrol.AddAttachment 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();
Example (Using Attachments Array)


component.AttachmentCount = 1;
component.AttachmentName(0) = "name";
component.AttachmentFile(0) = "C:\file.txt";

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 ActiveX Edition - Version 20.0 [Build 8307]