AddAttachment Method
Adds FileName as an attachment.
Syntax
int AddAttachment(char* lpszFileName);
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)
Control.AddAttachment(
"C:\file1.zip"
)
Control.AddAttachment(
"C:\file2.zip"
)
Control.Send()
Control.AttachmentCount = 1
Control.AttachmentName(0) =
"name"
Control.AttachmentFile(0) =
"C:\file.txt"