<?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: Blue Prism Outlook meeting request to collection in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48398#M3928</link>
    <description>i need to know inputs and outputs pls&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cohen&lt;BR /&gt;RPA Developer&lt;BR /&gt;&lt;BR /&gt;Romania&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Wed, 22 Jan 2020 10:44:00 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-01-22T10:44:00Z</dc:date>
    <item>
      <title>Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48395#M3925</link>
      <description>Hello, I am trying to get all meeting requests that come into my outlook to go into a collection- I can use "Get Received Items" but that picks&amp;nbsp; up normal mail and no meeting requests. I think it might be something to do with the code stage but not too sure what to change (the original for "Get Items" code is below). Any help appreciated, Thanks.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tara McGonigle&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 08:47:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48395#M3925</guid>
      <dc:creator>TaraMcGonigle</dc:creator>
      <dc:date>2020-01-22T08:47:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48396#M3926</link>
      <description>unfortunately the format saved by BP site is very small, so man can't read the image and see the actual code.&lt;BR /&gt;Try to post the code as text in the reply snippet.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cohen&lt;BR /&gt;RPA Developer&lt;BR /&gt;&lt;BR /&gt;Romania&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 09:37:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48396#M3926</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-22T09:37:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48397#M3927</link>
      <description>&lt;SPAN&gt;Dim app = CreateObject("Outlook.Application")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim _nameSpace = app.GetNameSpace("MAPI")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim folder =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="copyonly"&gt;_&lt;/SPAN&gt;&lt;EM&gt;nameSpace.GetDefaultFolder(Outlook&lt;/EM&gt;&lt;SPAN class="copyonly"&gt;_&lt;/SPAN&gt;&lt;SPAN&gt;Folder_ID)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If Sub_Folder &amp;lt;&amp;gt; "" Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For each name as string in Sub_Folder.Split("\")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;folder = folder.Folders(name)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;'See&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://msdn.microsoft.com/en-us/library/office/aa210946(v=office.11).aspx" target="_blank" rel="noopener noreferrer"&gt;https://msdn.microsoft.com/en-us/library/office/aa210946(v=office.11).aspx&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;'for mail item properties&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim dataTable As New Data.DataTable&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("EntryID", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("To", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("CC", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("Subject", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("Body", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("Attachments", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("ReceivedOn", Type.GetType("System.DateTime"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("SentOn", Type.GetType("System.DateTime"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("SenderName", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("SenderEmailAddress", Type.GetType("System.String"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Columns.Add("Unread", Type.GetType("System.Boolean"))&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim folderItems = If(Filter_Expression &amp;lt;&amp;gt; "", folder.Items.Restrict(Filter_Expression), folder.Items)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For Each item As Object In folderItems&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If Not TypeOf item Is MailItem Then Continue For&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim row As Data.DataRow = dataTable.NewRow&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("EntryID") = item.EntryID&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("To") =&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://item.to/" target="_blank" rel="noopener noreferrer"&gt;item.To&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;row("CC") =&amp;nbsp;&lt;/SPAN&gt;&lt;A href="http://item.cc/" target="_blank" rel="noopener noreferrer"&gt;item.CC&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;row("Subject") = item.Subject&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("Body") = item.Body&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dim attachments As String = ""&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For Each attachment As Object In item.Attachments&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If attachment.Type = 1 Then&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;attachments = attachments &amp;amp; "|" &amp;amp; attachment.DisplayName&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;End If&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;row("Attachments") = If (attachments.Length = 0, "", attachments.SubString(1))&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("SentOn") = item.SentOn&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("ReceivedOn") = item.ReceivedTime&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("SenderName") = item.SenderName&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("SenderEmailAddress") = If (item.SenderEmailType = "EX",item.Sender.GetExchangeUser.PrimarySmtpAddress,item.SenderEmailAddress)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;row("Unread") = item.Unread&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;dataTable.Rows.Add(row)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Item_Count += 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Next&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Items = dataTable&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tara McGonigle&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 09:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48397#M3927</guid>
      <dc:creator>TaraMcGonigle</dc:creator>
      <dc:date>2020-01-22T09:46:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48398#M3928</link>
      <description>i need to know inputs and outputs pls&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cohen&lt;BR /&gt;RPA Developer&lt;BR /&gt;&lt;BR /&gt;Romania&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 10:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48398#M3928</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-22T10:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48399#M3929</link>
      <description>Inputs&lt;BR /&gt;Name:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Data Type:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Value:&lt;BR /&gt;Filter Expression&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Text&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[Filter Expression]&lt;BR /&gt;Outlook Folder ID&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Number&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [Outlook Folder ID]&lt;BR /&gt;Sub Folder&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Text&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;[Sub Folder]&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Outputs&lt;BR /&gt;Name:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Data Type:&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Store In:&lt;BR /&gt;Items&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Collection&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Items&lt;BR /&gt;Item Count&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Number&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Items Count&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tara McGonigle&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 11:22:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48399#M3929</guid>
      <dc:creator>TaraMcGonigle</dc:creator>
      <dc:date>2020-01-22T11:22:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48400#M3930</link>
      <description>it gives me some errors. nevertheless, i would try to work with Outlook as a normal Web page, with button clicks, and insert, sending keys.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;if you go to Outlook ==&amp;gt; File ==&amp;gt;Open and Export ==&amp;gt; Import and Export ==&amp;gt;Export to File ==&amp;gt; Next ==&amp;gt;CSV==&amp;gt;Next==&amp;gt;ScrollUp and Select Calendar ==&amp;gt;Next==&amp;gt;Insert PATH==&amp;gt;Next==&amp;gt;Finish==&amp;gt;Insert Range (1.1.2019) (2.2.2020)==&amp;gt;OK.&lt;BR /&gt;&lt;BR /&gt; Now you have a CSV whom you can import in Collection and to stuff you need.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Cohen&lt;BR /&gt;RPA Developer&lt;BR /&gt;&lt;BR /&gt;Romania&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 12:32:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48400#M3930</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-01-22T12:32:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48401#M3931</link>
      <description>Is it possible to do this via Outlook application or is the only way forward through the use of the Web app? as im needing to do this through application to get the desired result, thanks&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Tara McGonigle&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Wed, 22 Jan 2020 12:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48401#M3931</guid>
      <dc:creator>TaraMcGonigle</dc:creator>
      <dc:date>2020-01-22T12:44:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48402#M3932</link>
      <description>The above is set up to assume that each Item is also a MailItem. (Hence the line "If Not TypeOf item Is MailItem Then Continue For"). You need to check if the type is MeetingItem, and then you can go from there.&lt;BR /&gt;&lt;BR /&gt;For documentation on MeetingItem and other Outlook options, check here:&amp;nbsp;&lt;A href="https://docs.microsoft.com/en-us/office/vba/api/outlook.mailitem" target="_blank" rel="noopener"&gt;https://docs.microsoft.com/en-us/office/vba/api/outlook.mailitem&lt;/A&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>Wed, 22 Jan 2020 19:54:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48402#M3932</guid>
      <dc:creator>AmiBarrett</dc:creator>
      <dc:date>2020-01-22T19:54:00Z</dc:date>
    </item>
    <item>
      <title>RE: Blue Prism Outlook meeting request to collection</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48403#M3933</link>
      <description>I built my own Outlook Action to specifically 'Get ReportItems' (ReportItems are emails that come back as undeliverable).&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;My line of code which controls which item I get is&lt;BR /&gt;&lt;BR /&gt;If TypeOf (SubFolderObject.Items(i)) Is Microsoft.Office.Interop.Outlook.ReportItem Then&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The 'TypeOf' of a meeting item is 'MeetingItem'.&amp;nbsp; So your code could be:&lt;BR /&gt;&lt;BR /&gt;&lt;BR style="background-color: transparent; box-sizing: border-box; color: #7a7a7a; font-family: &amp;amp;quot; helvetica neue&amp;amp;quot;,helvetica,arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;" /&gt;&lt;SPAN style="display: inline !important; float: none; background-color: transparent; color: #7a7a7a; cursor: text; font-family: 'Helvetica Neue',Helvetica,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt;If TypeOf (SubFolderObject.Items(i)) Is Microsoft.Office.Interop.Outlook.MeetingItem Then&lt;BR /&gt;&lt;BR /&gt;rest of code to put details into collection&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Matt Palmer&lt;BR /&gt;Business Process Specialist&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Jan 2020 14:46:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Blue-Prism-Outlook-meeting-request-to-collection/m-p/48403#M3933</guid>
      <dc:creator>MattPalmer</dc:creator>
      <dc:date>2020-01-23T14:46:00Z</dc:date>
    </item>
  </channel>
</rss>

