<?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 Read msg file in Outlook VBO in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94046#M43455</link>
    <description>hello guys,&lt;BR /&gt;&lt;BR /&gt;when i am trying to read .&lt;STRONG&gt;ms&lt;/STRONG&gt;g file type using outlook VBO&amp;nbsp; then in the &lt;STRONG&gt;attachment&lt;/STRONG&gt; &lt;STRONG&gt;column&lt;/STRONG&gt; is coming &lt;STRONG&gt;blank&lt;/STRONG&gt; in item collection and of course not saving this type as attachment as well in a folder.&lt;BR /&gt;&lt;BR /&gt;i believe exchange objects are different from normal files but what can be solution for this.&lt;BR /&gt;is the latest OUTLOOK VBO&amp;nbsp; (6.10.5) able to handle this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Neeraj Kumar&lt;BR /&gt;Technical Architect&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 02 May 2022 18:27:00 GMT</pubDate>
    <dc:creator>Neel1</dc:creator>
    <dc:date>2022-05-02T18:27:00Z</dc:date>
    <item>
      <title>Read msg file in Outlook VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94046#M43455</link>
      <description>hello guys,&lt;BR /&gt;&lt;BR /&gt;when i am trying to read .&lt;STRONG&gt;ms&lt;/STRONG&gt;g file type using outlook VBO&amp;nbsp; then in the &lt;STRONG&gt;attachment&lt;/STRONG&gt; &lt;STRONG&gt;column&lt;/STRONG&gt; is coming &lt;STRONG&gt;blank&lt;/STRONG&gt; in item collection and of course not saving this type as attachment as well in a folder.&lt;BR /&gt;&lt;BR /&gt;i believe exchange objects are different from normal files but what can be solution for this.&lt;BR /&gt;is the latest OUTLOOK VBO&amp;nbsp; (6.10.5) able to handle this?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Neeraj Kumar&lt;BR /&gt;Technical Architect&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 02 May 2022 18:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94046#M43455</guid>
      <dc:creator>Neel1</dc:creator>
      <dc:date>2022-05-02T18:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Read msg file in Outlook VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94047#M43456</link>
      <description>I don't know if the base VBO provided by Blue Prism has been fixed for that yet. It might be in 6.10.5, but I cannot confirm. In any case, you could just use this code below for now which worked for me last I checked. Here's the code from a Save Attachments code stage (VB.NET) that I edited a few years ago. It's slightly modified. I think the only thing I changed was to add '5' in which is the .msg attachment type.&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-vbnet"&gt;&lt;CODE&gt;Dim app = CreateObject("Outlook.Application")
Dim _nameSpace As Microsoft.Office.Interop.Outlook.NameSpace = app.GetNameSpace("MAPI")

Dim item = _nameSpace.GetItemFromID(Entry_ID)
If item Is Nothing Then Return

If Not Folder_Path.EndsWith("\") Then Folder_Path &amp;amp;="\"

For Each attachment As Object In item.Attachments
	If (attachment.Type = 1 OrElse attachment.Type = 5 OrElse attachment.Type = 6) AndAlso attachment.FileName Like File_Pattern Then
		attachment.SaveAsFile(Folder_Path &amp;amp; attachment.FileName)
	End If
Next​&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Dave Morris&lt;BR /&gt;3Ci at Southern Company&lt;BR /&gt;Atlanta, GA&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 02 May 2022 22:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94047#M43456</guid>
      <dc:creator>david.l.morris</dc:creator>
      <dc:date>2022-05-02T22:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: Read msg file in Outlook VBO</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94048#M43457</link>
      <description>Hi Neeraj,&lt;BR /&gt;&lt;BR /&gt;The latest version of Outlook VBO on the DX definitely has the feature. In fact it should have been there for quite some time already.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Bruce Liu&lt;BR /&gt;Senior Product Consultant, Professional Services&lt;BR /&gt;Blue Prism&lt;BR /&gt;Australia/Sydney&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 02 May 2022 22:49:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Read-msg-file-in-Outlook-VBO/m-p/94048#M43457</guid>
      <dc:creator>bruce.liu</dc:creator>
      <dc:date>2022-05-02T22:49:00Z</dc:date>
    </item>
  </channel>
</rss>

