Hello,
I added one action called Get Mail by ID in the MAPIEx object.
Just make a copy of ""Get Mail"" and edit the code like that :
Don't forget to add a new input called ""Input ID"" in the code stage
----------------------------------------
' Assume success
Success = True
Error_Message = """"
Dim NewID As String = """"
Try
Using mapi As New NetMAPI()
'log into mapi
mapi.Login(Profile)
If Not mapi.OpenMessageStore() Then Throw New MAPIException( _
""Failed to access message store"")
If Not mapi.OpenInbox() Then Throw New MAPIException( _
""Failed to access inbox"")
'open sub folder if specified
Dim msgFolder As String = ""Inbox""
If Sub_Folder """" Then
msgFolder = ""sub-folder '"" & Sub_Folder & ""'""
If Not mapi.OpenSubFolder(Sub_Folder) Then _
Throw New MAPIException(""Failed to open {0}"", msgFolder)
End If
If Not mapi.GetContents() Then Throw New MAPIException( _
""Failed to get contents of {0}"", msgFolder)
If mapi.RowCount