Cloud Mail 2020 Kotlin Edition

Questions / Feedback?

CreateDraft Method

Creates a new email draft.

Syntax

public fun createDraft(draftType: Int, id: String?)

Remarks

This method creates a new draft in the Drafts folder. The created message's information is also added to the MessageInfo property.

Valid values for DraftType :

0DRAFTTYPE_MESSAGE
1DRAFTTYPE_REPLY
2DRAFTTYPE_REPLYALL
3DRAFTTYPE_FORWARD

When using DRAFTTYPE_REPLY, DRAFTTYPE_REPLYALL, or DRAFTTYPE_FORWARD the id parameter can be used to specify the message that is being replied to or forwarded. When using DRAFTTYPE_MESSAGE, pass in an empty string as the id.

Example


office365.MessageSubject = "I saw a Tree";
office365.MessageImportance = "High";
office365.MessageBodyContentType = "TEXT";
office365.MessageBodyContent = "It was in my back yard initially. It was still there when I last checked.";
office365.MessageTo = "TreeLookOut@gmail.com";

office365.CreateDraft(0, "");

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