Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

AddAttachment Method

Adds an attachment to an existing message.

Syntax

public fun addAttachment(id: String?, name: String?, localFile: String?)

Remarks

This method adds an attachment to an existing message, specified by the id parameter.

Example (Adding an Attachment to a New Draft)


office365.CreateDraft(0, "");
String messageId = office365.MessageInfo[0].Id;

office365.AddAttachment(messageId, "file1.zip", "C:\file1.zip");

Copyright (c) 2021 /n software inc. - All rights reserved.
Cloud Mail 2020 Kotlin Edition - Version 20.0 [Build 7941]