Tag: SelectedExportEML

The SelectedExportEML function automates the action of exporting EML selected in the Message grid.


<SelectedExportEML/>
XML

Tag Attributes

AttributesAttribute Value
KeepAliveTRUE / FALSE
FilePathDownload target folder path, defaults to Documents
IfFileExsistsCreateNew / Overwrite / Skip
Hierarchy TRUE / FALSE

download-attachments-1

Example Script

<LoadSession name="AllanD@M365x356371.onmicrosoft.com"/>
<ShowMyDataMail>
	<Select Lines="ByValue">
		<SetParam ColumnID="subject" Value="Documents attached"/>
	</Select>
	<SelectedExportEML/>
</ShowMyDataMail>
XML

Example Script with Params

<LoadSession name="admin@M365x103211.onmicrosoft.com"/>
<ShowMyDataMail>
	<Select Lines="ByValue">
		<SetParam ColumnID="subject" Value="Documents attached"/>
	</Select>
	<SelectedAttachmentLoadInfo/>
	<SelectedExportEMLFilePath="D:\temp-exports" IfFileExists="Skip"/>
</ShowMyDataMail>
XML