ShowMyDataMail: Open Messages Module for Signed-in User
Tag: ShowMyDataMail
ShowMyDataMail launches the Messages module for the signed-in user.
<ShowMyDataMail/>
Tag Attributes
Attributes | Attribute Value | Comment |
---|---|---|
KeepAlive | True / False | Defaults to True |
FrameId | Unique identifier of the frame | Reuse the frame if it exists already, create a new one if it doesn’t. |
The following attributes also apply to "User: Show Messages":
Attributes | Attribute Values | Value Description |
---|---|---|
CutOff | all lastHour lastDay lastWeek lastMonth other (a date in iso8601 format) | Defaults to all |
BodyPreview | True / False | Retrieves Mail Previews Defaults to True |
FullBody | True / False | Retrieves Full Body Content Defaults to False |
MailHeaders | True / False | Retrieves Mail Headers Defaults to False |
Filter | Pre-filter string | As seen in Filter editor Result -- see image above |
RecoverableItemsFolders | True / False | Includes recoverable items Defaults to False |
EventData | True / False | Retrieves Event Reference Data Defaults to False |
MaxItems | Number greater than 0 | The maximum number of messages to retrieve (per user) |
WithFolders | True / False | False: no folder hierarchy is queried, and messages are displayed as a flat list. Defaults to True |
If attribute "CutOff" is missing, the Option dialog will be shown. None of the above other attributes are allowed.
If attribute "CutOff" is empty, all messages are retrieved without time limit.
If one of the other attributes (like BodyPreview, FullBody, MailHeaders, or Filter) is used, CutOff is required.
Example Script
<ShowMyDataMail/> <!-- Show dialog -->
<ShowMyDataMail cutoff=""/> <!-- Retrieve all messages -->
<ShowMyDataMail cutoff="lastWeek" BodyPreview="true"/>
<ShowMyDataMail cutoff="2019-08-14" FullBody="true" MailHeaders="true"/>