Insert a Message

To insert a message, your insertXML must include the following properties:

Property name Description
TYPE The type of item to insert (set this property to MESSAGE).
FOLDER_ID

The folder to add the message to. You can specify an ID or a folder name such as Inbox.

USER_ID The ID of the user account to add the message to.

For example, to add a message to the inbox of the specified user:

<insertXML>
  <insert>
    <reference>Inserted message</reference>
    <property name="FOLDER_ID" value="Inbox"/>
    <property name="TYPE" value="MESSAGE"/>
    <property name="USER_ID" value="2fbcacc4-2b74-4cfd-bb3e-edad8f0cd0cc"/>
    <file>
      <type>file</type>
      <content>message.eml</content>
    </file>
  </insert>
</insertXML>