IP*Works! 2016 Delphi Edition
IP*Works! 2016 Delphi Edition
Questions / Feedback?

AddAttachment Method

Adds FileName as an attachment.

Syntax


procedure AddAttachment(FileName: String);

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()
or Example (Using Attachments Array)


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

 
 
Copyright (c) 2020 /n software inc. - All rights reserved.
IP*Works! 2016 Delphi Edition - Version 16.0 [Build 7353]