Messaging
CreateMsgDocument
Create MSG-Document based on the parameter From, To, Subject and Body.
Syntax
Parameters
From (optional) Sender of the mail. Type: String
To (optional) Recipients of the mail. Type: String
CC (optional) CC of the mail. Type: String
BCC (optional) BCC of the mail. Type: String
Subject Subject of the mail (also used as the Document name). Type: String
Body (optional) Body of the mail. Type: String
SentOn (optional) Sent date of the mail. Type: DateTime
Attachments (optional) Attachments of the mail. Type: List<Document>
Return Type
Document
CreateMsgDocumentFromWord
Create MSG-Document based on the parameter From, To, Subject and Body as MHTML (convert from a Word Document).
Syntax
Parameters
From (optional) Sender of the mail. Type: String
SentOn (optional) Sent date of the mail. Type: DateTime
To (optional) Recipients of the mail. Type: String
CC (optional) CC of the mail. Type: String
BCC (optional) BCC of the mail. Type: String
Subject Subject of the mail (also used as the Document name). Type: String
Document The Word Document used as the Body. Type: Document
Attachments (optional) Attachments of the mail. Type: List<Document>
Return Type Document
GetMailInstance
Get E-Mail object based on the MSG-Document.
Syntax
Parameters
Document The MSG-Document. Type: Document
Return Type
Object
GetMsgProperties
Reads the properties of the MSG file passed in the Document parameter.
Syntax
Parameters
Document Document object containing an MSG file. Type: Document
Return Type
Dictionary<Any,Any>
MergeMsgDocuments
Merges MSG files to create a document preserving embedded images.
Syntax
Parameters
Prepend (optional) The MSG-Document to prepend to the target. Type: Document
Target The MSG-Document that another MSG-Documents is appended and/ or prepended to. Type: Document
Append (optional) The MSG-Document to append to the target. Type: Document
Return Type Document
Notify
Notifies an User with a Subject and a text.
Syntax
Parameters
To ID of the user which will be notified. Type: Guid
Subject Title of the notification. Type: String
Body Content text of the notification. Type: String
Return Type Void
SendMessage
Sends a message with a title Subject and content Body to a person To from a person From.
Syntax
Parameters
From Email address of the sender. Type: String
To Email addresses of the receivers. Type: String
Subject Title of the message. Type: String
Body Content text of the message. Type: String
Return Type Void
SendMsgDocument
Send an E-Mail using the platform account based on the MSG-Document
Syntax
Parameters
Document The E-Mail to send. Type: Document
Return Type Object
SetMsgProperties
Copies the MSG-Document and set the properties of the new MSG-File to the values specified in the parameter MsgProperties.
Syntax
Parameters
Document Document containing an MSG file. Type: Document
MsgValues The values to set. Type: Dictionary<Any,Any>
Return Type Document
SharedLinkInstance
Creates an URL link for an instance.
Syntax
Parameters
Object Object which is used as basis of the link. Type: Object
Return Type
String
TransformMsgDocument
Build an MSG-Document representing a Reply, ReplyAll or Forward-Message to the MSG-Document passed as a parameter.
Syntax
Parameters
Document The Document to transform. Type: Document
TransformationType (optional) Type of the transformation: Reply, ReplyAll or Forward. Type: String
Return Type
Document
Last updated