Cloud Mail 2020 Android Edition

Questions / Feedback?

Attachments Property

The paths of files to attach to the message.

Syntax

public FileAttachmentList getAttachments();
public void setAttachments(FileAttachmentList 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();
Example (Using Attachments Collection)


component.Attachments.Add(new nsoftware.IPWorks.FileAttachment("name", "C:\file.txt"));

This collection is indexed from 0 to size - 1.

This property is not available at design time.

Default Value

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Mail 2020 Android Edition - Version 20.0 [Build 8308]