<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: RE: I think he means… in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/119290#M4222</link>
    <description>&lt;P&gt;Hi Amy,&lt;/P&gt;&lt;P&gt;Thanks for this answer.&lt;/P&gt;&lt;P&gt;if you are still getting updates from this post then I have a question,&lt;/P&gt;&lt;P&gt;"I am trying to read emails from a bot(profile name) profile in outlook and not from the default profile but I am not able to use the above code without launching the outlook application with profile name as a parameter". Is this how it is supposed to be and if not what is the workaround/solution?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;</description>
    <pubDate>Fri, 07 Mar 2025 06:33:03 GMT</pubDate>
    <dc:creator>abhi.sachdev_hcl</dc:creator>
    <dc:date>2025-03-07T06:33:03Z</dc:date>
    <item>
      <title>Multiple Outlook Profiles using Outlook VBO</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53402#M773</link>
      <description>Will there be any support on reading emails from multiple Outlook profiles using the latest Outlook VBO. As of now, Outlook VBO could only read the default Outlook profile.&amp;nbsp;</description>
      <pubDate>Thu, 03 Jan 2019 02:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53402#M773</guid>
      <dc:creator>pranavred</dc:creator>
      <dc:date>2019-01-03T02:54:00Z</dc:date>
    </item>
    <item>
      <title>It is possible to use other…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53403#M774</link>
      <description>It is possible to use other profiles.
You need to select ""Prompt for profile to be used"" within Control Panel &amp;gt; Mail. You can then create an object to select which profile you wish to use from the Choose Profile window upon launching Outlook.
&amp;nbsp;
&amp;nbsp;</description>
      <pubDate>Tue, 08 Jan 2019 21:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53403#M774</guid>
      <dc:creator>Dan.Lister</dc:creator>
      <dc:date>2019-01-08T21:44:00Z</dc:date>
    </item>
    <item>
      <title>I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53404#M775</link>
      <description>I think he means programatically switching between profiles, like you could in MAPIEx. The process to modify the VBO to handle this has been covered here:&amp;nbsp;https://portal.blueprism.com/forums/technical-queries/general/outlook-v…</description>
      <pubDate>Tue, 08 Jan 2019 21:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53404#M775</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-01-08T21:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53405#M776</link>
      <description>Hi Team,&lt;BR /&gt;&lt;BR /&gt;I am using outlook Email VBO ,which works fine but i have few queries in that VBO&lt;BR /&gt;&lt;BR /&gt;1) 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&lt;BR /&gt;2) 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&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Manoj</description>
      <pubDate>Wed, 05 Jun 2019 14:11:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53405#M776</guid>
      <dc:creator>ManojKumar3</dc:creator>
      <dc:date>2019-06-05T14:11:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53406#M777</link>
      <description>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. (Alternatively, grab the version I've uploaded and rename the extension to .bprelease, located here:&amp;nbsp;https://community.blueprism.com/viewdocument/re-outlook-email-vbo?CommunityKey=3743dbaa-6766-4a4d-b7ed-9a98b6b1dd01&amp;amp;tab=librarydocuments )&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm going to list the modifications to the code stage. You should be able to figure out the rest from there. sharedEmail allows for shared inboxes on the same Outlook profile.&lt;BR /&gt;&lt;BR /&gt;Additional inputs:&lt;BR /&gt;Profile - Text&lt;BR /&gt;sharedEmail - Text&lt;BR /&gt;&lt;BR /&gt;The top of the code stage should look like this:&lt;BR /&gt;
&lt;PRE class="language-markup"&gt;Dim app = CreateObject("Outlook.Application")
Dim _nameSpace = app.GetNameSpace("MAPI")
Dim folder = _nameSpace.GetDefaultFolder(Outlook_Folder_ID)
Dim olSharedRecip as object

if Profile &amp;lt;&amp;gt; "" then
    _nameSpace.Logon(Profile, , True, True)
end if

if sharedEmail &amp;lt;&amp;gt; Nothing then
	olSharedRecip = _nameSpace.CreateRecipient(sharedEmail)
	folder = _nameSpace.GetSharedDefaultFolder(olSharedRecip, Outlook_Folder_ID)
end if​&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Lead RPA Software Developer&lt;BR /&gt;Solai &amp;amp; Cameron&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 05 Jun 2019 14:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53406#M777</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2019-06-05T14:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53407#M778</link>
      <description>&lt;P&gt;Hi Ami,&lt;BR /&gt;​I downloaded your release and tried running it.&amp;nbsp; It runs through but doesn't pull anything.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;For 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.&amp;nbsp; None of them seem to be pulling anything but don't error out.&amp;nbsp; If I try to add my subfolder of "Test" it then says object can't be found.&amp;nbsp; So that makes it seem like it is being read.&amp;nbsp; Any ideas on how to get it going?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Jon&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6530.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6712iEA77CA142DD9E295/image-size/large?v=v2&amp;amp;px=999" role="button" title="6530.png" alt="6530.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Holstine&lt;BR /&gt;Systems Accountant&lt;BR /&gt;Interior Business Center&lt;BR /&gt;America/Denver&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2020 22:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53407#M778</guid>
      <dc:creator>JonathanHolstin</dc:creator>
      <dc:date>2020-01-16T22:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53408#M779</link>
      <description>Just tested locally. Try adding values for "Include Read" and "Include Unread". &lt;BR /&gt;&lt;BR /&gt;Previously when I had written this, these were not required. I'm starting to wonder if there's something to do with the version of Outlook.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Richardson, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2020 22:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53408#M779</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-16T22:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53409#M780</link>
      <description>​Hi Ami,&lt;BR /&gt;I'm sorry I'm new to outlook and this language.&amp;nbsp; Can you send the exact code syntax I would need to add.&amp;nbsp; Would I just put this below the Sub_Folder and before the End If?&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6543.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6727iF31B1E5F740C312E/image-size/large?v=v2&amp;amp;px=999" role="button" title="6543.png" alt="6543.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Jonathan Holstine&lt;BR /&gt;Systems Accountant&lt;BR /&gt;Interior Business Center&lt;BR /&gt;America/Denver&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2020 22:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53409#M780</guid>
      <dc:creator>JonathanHolstin</dc:creator>
      <dc:date>2020-01-16T22:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53410#M781</link>
      <description>If you downloaded the VBO I provided, you don't need to add anything. If you're using the stock VBO, it's provided in the same post with the link.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Richardson, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Jan 2020 22:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53410#M781</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-16T22:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53411#M782</link>
      <description>Hi Ami,&amp;nbsp;&lt;BR /&gt;I tried the VBO you provided and it is working and extracting mails from my account. But if I change "Profile" to another account, it is still extracting mails from my account. The only fields set are Profile and Include Read and Include Unread, bot True.&lt;BR /&gt;&lt;BR /&gt;Outlook version is 2013/32bit.&lt;BR /&gt;&lt;BR /&gt;Reiner&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Reiner Volbers&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jan 2020 09:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53411#M782</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-20T09:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53412#M783</link>
      <description>Just to be sure, the profile field is either blank or matching the name of a mail profile, correct? You can verify this by going to Control Panel -&amp;gt; Mail -&amp;gt; Show Profiles.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Richardson, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jan 2020 14:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53412#M783</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-21T14:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53413#M784</link>
      <description>Hi Ami,&lt;BR /&gt;whether I leave it blank, put in the name of my profile or another profile name: I only get mails from my profile.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Maybe I misunderstood something and/or my Outlook is not configured correctly. In the Control Panel only one profile is shown (mine). I want to send/read e-mails from another account and the owner granted me access to those folders. Therefore I put in the other accounts profile name and subfolder of that account. Then I get an error message because the folder does not exist. Obviously the VBO is checking against folder in my profile and ignoring the profile defined in the stage.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Reiner Volbers&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jan 2020 14:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53413#M784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-21T14:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53414#M785</link>
      <description>&lt;P&gt;Sounds like you're trying to access a shared inbox. That's where the "Shared E-Mail" feild comes into play.&lt;BR /&gt;&lt;BR /&gt;Suppose under your default profile (typically either named Default or Outlook), your list of folders looks something like this:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE class="language-markup"&gt;My.Email@mydomain.com
&amp;gt;Inbox
&amp;gt;&amp;gt;Subfolder 1
&amp;gt;Drafts
&amp;gt;Sent Items
&amp;gt;etc etc

Shared.Email@mydomain.com
&amp;gt;Inbox
&amp;gt;&amp;gt;Subfolder 1
&amp;gt;Drafts
&amp;gt;Sent Items
&amp;gt;etc etc&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;Since you have two inboxes attached to the profile, you will need to specify the e-mail address of the target inbox in the "Shared E-Mail" field. In the case of the above example, it should be set to "Shared.Email@mydomain.com" .&amp;nbsp;&lt;/P&gt;
&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Richardson, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 21 Jan 2020 15:25:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53414#M785</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-21T15:25:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53415#M786</link>
      <description>Hi Ami,&lt;BR /&gt;thanks for your direction. I got access to the Subfolder1 (your example), but both Inbox and Shared.Email@mydomain.com did not have the "visible" flag set in the Outlook folder access settings. This is done now and with "Profile" left blank and "Subfolder"/"Shared Email" set it's working.&lt;BR /&gt;&lt;BR /&gt;Thanks again, please add this to the official Outlook VBO.&lt;BR /&gt;&lt;BR /&gt;Reiner&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Reiner Volbers&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 14:24:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53415#M786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-22T14:24:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53416#M787</link>
      <description>Interesting! Can't say I've run across that before. Thanks for sharing!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Richardson, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 14:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53416#M787</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-22T14:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53417#M788</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;
&lt;P&gt;In my outlook i have 4 Shared Emails, and i need that BP get all unread emails from all shared email accounts, how can i do that?&lt;/P&gt;
&lt;P&gt;do you can give me a PrintScreen with exemple?&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cleidson Cordeiro&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 18:10:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53417#M788</guid>
      <dc:creator>CleidsonCordeir</dc:creator>
      <dc:date>2020-03-10T18:10:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53418#M789</link>
      <description>If you need to pull from all shared boxes at once, leave "sharedEmail" blank.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 18:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53418#M789</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-03-10T18:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53419#M790</link>
      <description>&lt;P&gt;Thanks, i dont know why but its not working, see what i got on a exemple email:&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6587.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6761i7D961361B17ECD4A/image-size/large?v=v2&amp;amp;px=999" role="button" title="6587.png" alt="6587.png" /&gt;&lt;/span&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6588.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6763iA9EF838946FD7986/image-size/large?v=v2&amp;amp;px=999" role="button" title="6588.png" alt="6588.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;
So i have 2 Unread Emails, one from the first inbox and another from second, but when i start the Internal MAP v2/get Mail my Items Data item only get only 1 Row.&lt;/DIV&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;any idea?&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cleidson Cordeiro&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 18:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53419#M790</guid>
      <dc:creator>CleidsonCordeir</dc:creator>
      <dc:date>2020-03-10T18:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53420#M791</link>
      <description>If you go into the folder properties, are they set to be visible?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Ami Barrett&lt;BR /&gt;Sr Product Consultant&lt;BR /&gt;Blue Prism&lt;BR /&gt;Plano, TX&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 19:02:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53420#M791</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-03-10T19:02:00Z</dc:date>
    </item>
    <item>
      <title>RE: I think he means…</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53421#M792</link>
      <description>&lt;P&gt;yes, on both:&lt;/P&gt;
&lt;DIV class="media" style="overflow: hidden; zoom: 1;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="6603.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/6782i194C67F1898DC824/image-size/large?v=v2&amp;amp;px=999" role="button" title="6603.png" alt="6603.png" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cleidson Cordeiro&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 10 Mar 2020 19:16:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Multiple-Outlook-Profiles-using-Outlook-VBO/m-p/53421#M792</guid>
      <dc:creator>CleidsonCordeir</dc:creator>
      <dc:date>2020-03-10T19:16:00Z</dc:date>
    </item>
  </channel>
</rss>

