<?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: Reading &amp;quot;Sent Items&amp;quot; from a shared mailbox in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92506#M42281</link>
    <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-tag-text="@June Siravo" href="https://community.blueprism.com/network/profile?UserKey=b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-itemmentionkey="c9707ab0-da22-4b22-ac73-4b3519b77816"&gt;@June Siravo&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you tell me if your local instance of Outlook has the &lt;STRONG&gt;Use Cached Exchange Mode&lt;/STRONG&gt; option enabled?​ What about the &lt;STRONG&gt;Download Shared Folders&lt;/STRONG&gt; option?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="29662.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29791i9C18698F35B34BF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="29662.png" alt="29662.png" /&gt;&lt;/span&gt;&lt;BR /&gt;In the past, we've found that both of these options can contribute to issues with accessing shared mailboxes and folders from the local Outlook instance.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 08 Aug 2022 13:58:00 GMT</pubDate>
    <dc:creator>ewilson</dc:creator>
    <dc:date>2022-08-08T13:58:00Z</dc:date>
    <item>
      <title>Reading "Sent Items" from a shared mailbox</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92504#M42279</link>
      <description>I have seen others ask this question but have not seen a response. I am able to read the inbox of a shared folder without issue (using action "get Received Items Basic") however I cannot do the same for "Sent Items" folder (using action "Get Sent Items Basic"). Getting this message (below), any ideas as to why this is happening?&lt;BR /&gt;Thanks You!&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="29684.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29814iBA29DBEF0A0EDDD3/image-size/large?v=v2&amp;amp;px=999" role="button" title="29684.png" alt="29684.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="29686.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29816iD5C730836F039ED8/image-size/large?v=v2&amp;amp;px=999" role="button" title="29686.png" alt="29686.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;June Siravo&lt;BR /&gt;Analyst&lt;BR /&gt;FIAM&lt;BR /&gt;America/New_York&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Aug 2022 18:42:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92504#M42279</guid>
      <dc:creator>a026833</dc:creator>
      <dc:date>2022-08-05T18:42:00Z</dc:date>
    </item>
    <item>
      <title>RE: Reading "Sent Items" from a shared mailbox</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92505#M42280</link>
      <description>Hi June,&lt;BR /&gt;&lt;BR /&gt;is the mailbox is default one or Shared mailbox?&lt;BR /&gt;&lt;BR /&gt;if its shared then you can try the below code (you need edit the code for "sent folder")&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Dim app = CreateObject("Outlook.Application")&lt;BR /&gt;Dim _nameSpace = app.GetNameSpace("MAPI")&lt;BR /&gt;&lt;BR /&gt;Dim folder &lt;BR /&gt;&lt;BR /&gt;folder = _nameSpace.Folders(MailBoxName)&lt;BR /&gt;If SubFolder &amp;lt;&amp;gt; "" Then&lt;BR /&gt;For each name as string in SubFolder.Split("\")&lt;BR /&gt;folder = folder.Folders(name)&lt;BR /&gt;Next&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;Dim dataTable As New Data.DataTable&lt;BR /&gt;dataTable.Columns.Add("EntryID", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("To", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("CC", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("Subject", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("Body", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("Attachments", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("ReceivedOn", Type.GetType("System.DateTime"))&lt;BR /&gt;dataTable.Columns.Add("SentOn", Type.GetType("System.DateTime"))&lt;BR /&gt;dataTable.Columns.Add("SenderName", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("SenderEmailAddress", Type.GetType("System.String"))&lt;BR /&gt;dataTable.Columns.Add("Unread", Type.GetType("System.Boolean"))&lt;BR /&gt;&lt;BR /&gt;Dim folderItems = If(Filter_Expression &amp;lt;&amp;gt; "", folder.Items.Restrict(Filter_Expression), folder.Items)&lt;BR /&gt;&lt;BR /&gt;For Each item As Object In folderItems&lt;BR /&gt;If Not TypeOf item Is MailItem Then Continue For&lt;BR /&gt;Dim row As Data.DataRow = dataTable.NewRow&lt;BR /&gt;row("EntryID") = item.EntryID&lt;BR /&gt;row("To") = item.To&lt;BR /&gt;row("CC") = item.CC&lt;BR /&gt;row("Subject") = item.Subject&lt;BR /&gt;row("Body") = item.Body&lt;BR /&gt;&lt;BR /&gt;Dim attachments As String = ""&lt;BR /&gt;For Each attachment As Object In item.Attachments&lt;BR /&gt;If attachment.Type = 1 Then&lt;BR /&gt;attachments = attachments &amp;amp; "|" &amp;amp; attachment.DisplayName&lt;BR /&gt;End If&lt;BR /&gt;Next&lt;BR /&gt;&lt;BR /&gt;row("Attachments") = If (attachments.Length = 0, "", attachments.SubString(1))&lt;BR /&gt;row("SentOn") = item.SentOn&lt;BR /&gt;row("ReceivedOn") = item.ReceivedTime&lt;BR /&gt;row("SenderName") = item.SenderName&lt;BR /&gt;row("SenderEmailAddress") = If (item.SenderEmailType = "EX",item.Sender.GetExchangeUser.PrimarySmtpAddress,item.SenderEmailAddress)&lt;BR /&gt;row("Unread") = item.Unread&lt;BR /&gt;dataTable.Rows.Add(row)&lt;BR /&gt;Item_Count += 1&lt;BR /&gt;Next&lt;BR /&gt;Items = dataTable&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Hanumanth Yemmetti&lt;BR /&gt;Senior Developer&lt;BR /&gt;Shell&lt;BR /&gt;Asia/Kolkata&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Aug 2022 12:36:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92505#M42280</guid>
      <dc:creator>HanumanthYemmet</dc:creator>
      <dc:date>2022-08-08T12:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: Reading "Sent Items" from a shared mailbox</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92506#M42281</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-tag-text="@June Siravo" href="https://community.blueprism.com/network/profile?UserKey=b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-itemmentionkey="c9707ab0-da22-4b22-ac73-4b3519b77816"&gt;@June Siravo&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Can you tell me if your local instance of Outlook has the &lt;STRONG&gt;Use Cached Exchange Mode&lt;/STRONG&gt; option enabled?​ What about the &lt;STRONG&gt;Download Shared Folders&lt;/STRONG&gt; option?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="29662.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29791i9C18698F35B34BF2/image-size/large?v=v2&amp;amp;px=999" role="button" title="29662.png" alt="29662.png" /&gt;&lt;/span&gt;&lt;BR /&gt;In the past, we've found that both of these options can contribute to issues with accessing shared mailboxes and folders from the local Outlook instance.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Aug 2022 13:58:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92506#M42281</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-08T13:58:00Z</dc:date>
    </item>
    <item>
      <title>RE: Reading "Sent Items" from a shared mailbox</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92507#M42282</link>
      <description>Hi Eric,&lt;BR /&gt;I tried changing the Exchange settings as you suggested, then closed and reopened Outlook but no luck, still getting the same error (see below), :&lt;span class="lia-inline-image-display-wrapper" image-alt="29665.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29798iD23D3F82AF009850/image-size/large?v=v2&amp;amp;px=999" role="button" title="29665.png" alt="29665.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="29666.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/29794iCB05E6CD8E1FDD5B/image-size/large?v=v2&amp;amp;px=999" role="button" title="29666.png" alt="29666.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;June Siravo&lt;BR /&gt;Analyst&lt;BR /&gt;FIAM&lt;BR /&gt;America/New_York&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Aug 2022 20:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92507#M42282</guid>
      <dc:creator>a026833</dc:creator>
      <dc:date>2022-08-11T20:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: Reading "Sent Items" from a shared mailbox</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92508#M42283</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-tag-text="@June Siravo" href="https://community.blueprism.com/network/profile?UserKey=b8d90bc9-8225-4f5a-ad2e-951baf481dbd" data-itemmentionkey="df6966b9-4bb8-47ce-ace5-a256d5a1c543"&gt;@June Siravo&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;Ok, go ahead and put those settings back the way they were. I've been tinkering with the Outlook VBO today and I did notice the I've started to have some issues with accessing the Shared Mailbox on our test system. As a result, we went back and adjusted the code of the VBO a bit to basically use two different methods of trying to get a pointer to a folder (this applies to Received and Sent items as well as Shared Mailboxes). &lt;BR /&gt;&lt;BR /&gt;There's a new version of the VBO (v6.10.6) on the DX now. I'd suggest grabbing the latest version and giving it a try.&lt;BR /&gt;&lt;BR /&gt;Cheers,​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Integrations and Enablement&lt;BR /&gt;Blue Prism Digital Exchange&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Aug 2022 21:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Reading-quot-Sent-Items-quot-from-a-shared-mailbox/m-p/92508#M42283</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-11T21:15:00Z</dc:date>
    </item>
  </channel>
</rss>

