
It runs through but doesn't pull anything.įor input paramenters on the action.I've tried it with nothing in the Shared Email and I've tried it with the full email in shared folder and I've tried it with how the shared box shows up in my email. I downloaded your release and tried running it. I'm starting to wonder if there's something to do with the version of Outlook. Previously when I had written this, these were not required. Try adding values for "Include Read" and "Include Unread". The process to modify the VBO to handle this has been covered here: …

I think he means programatically switching between profiles, like you could in MAPIEx. I am using outlook Email VBO ,which works fine but i have few queries in that VBOġ) when i use the action: Get Received Items(Basic)-it works perfect if i pass the "Sub Folder" and "Sender Name" as inputs but when i pass Mail id it does not give me any output even though the mail id is proper and ValidĢ) With one profile in my outlook it works properly but then i have 4 profiles in my same outlook so how do i point to the right profile by using this Outlook Email VBO OlSharedRecip = _nameSpace.CreateRecipient(sharedEmail)įolder = _nameSpace.GetSharedDefaultFolder(olSharedRecip, Outlook_Folder_ID)ĭim app = CreateObject("Outlook.Application")Dim _nameSpace = app.GetNameSpace("MAPI")Dim folder = _nameSpace.GetDefaultFolder(Outlook_Folder_ID)Dim olSharedRecip as objectif Profile "" then _nameSpace.Logon(Profile,, True, True)end ifif sharedEmail Nothing then olSharedRecip = _nameSpace.CreateRecipient(sharedEmail) folder = _nameSpace.GetSharedDefaultFolder(olSharedRecip, Outlook_Folder_ID)end if The top of the code stage should look like this:ĭim app = CreateObject("Outlook.Application")ĭim _nameSpace = app.GetNameSpace("MAPI")ĭim folder = _nameSpace.GetDefaultFolder(Outlook_Folder_ID) sharedEmail allows for shared inboxes on the same Outlook profile. You should be able to figure out the rest from there. I'm going to list the modifications to the code stage.

(Alternatively, grab the version I've uploaded and rename the extension to.

You'll need to modify the code stage, as well as the inputs on "Internal_Get Items" and "Get Received Items (Basic)" for this to work.
