<?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 Rename a subject line in outlook. in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74759#M27364</link>
    <description>&lt;P&gt;I need to rename an email's subject, the process will pass in the emails EntryID and new subject, then the object should rename the subject of an email and pass out a success or error message.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sakshi Shivhare&lt;BR /&gt;System engineer&lt;BR /&gt;Infosys&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 07 Oct 2022 17:45:00 GMT</pubDate>
    <dc:creator>SakshiShivhare</dc:creator>
    <dc:date>2022-10-07T17:45:00Z</dc:date>
    <item>
      <title>Rename a subject line in outlook.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74759#M27364</link>
      <description>&lt;P&gt;I need to rename an email's subject, the process will pass in the emails EntryID and new subject, then the object should rename the subject of an email and pass out a success or error message.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sakshi Shivhare&lt;BR /&gt;System engineer&lt;BR /&gt;Infosys&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Oct 2022 17:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74759#M27364</guid>
      <dc:creator>SakshiShivhare</dc:creator>
      <dc:date>2022-10-07T17:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rename a subject line in outlook.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74760#M27365</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/35927"&gt;@SakshiShivhare&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;You can try below code to rename Email's Subject -&lt;BR /&gt;
&lt;UL&gt;
&lt;LI&gt;&amp;nbsp;Input Parameter - 1. Entry ID (Text) 2. Subject (Text)&lt;/LI&gt;
&lt;LI&gt;Output Parameter - 1. Success (Flag)&lt;/LI&gt;
&lt;/UL&gt;
&lt;span class="lia-inline-image-display-wrapper" image-alt="18069.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/18222iD163A31C35853713/image-size/large?v=v2&amp;amp;px=999" role="button" title="18069.png" alt="18069.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Code Stage&amp;nbsp; -&amp;nbsp;&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;&amp;nbsp;Inputs - &lt;span class="lia-inline-image-display-wrapper" image-alt="18070.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/18221iC92EFD2D0036E316/image-size/large?v=v2&amp;amp;px=999" role="button" title="18070.png" alt="18070.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;Outputs - &lt;span class="lia-inline-image-display-wrapper" image-alt="18071.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/18226i596D7AAA4FBA7FB9/image-size/large?v=v2&amp;amp;px=999" role="button" title="18071.png" alt="18071.png" /&gt;&lt;/span&gt;&lt;/LI&gt;
&lt;LI&gt;&amp;nbsp;Code -&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
​Dim app = CreateObject("Outlook.Application")&lt;BR /&gt;Dim _nameSpace As Microsoft.Office.Interop.Outlook.NameSpace = app.GetNameSpace("MAPI")&lt;BR /&gt;&lt;BR /&gt;Dim item = _nameSpace.GetItemFromID(Entry_ID)&lt;BR /&gt;&lt;BR /&gt;'Below line of code will update the subject line'&lt;BR /&gt;item.Subject = Subject&lt;BR /&gt;&lt;BR /&gt;'Below Code will save the updated subject' &lt;BR /&gt;item.Save&lt;BR /&gt;&lt;BR /&gt;'Below code will verify the updated subject'&lt;BR /&gt;If item.Subject = Subject&lt;BR /&gt;Success = True&lt;BR /&gt;Else&lt;BR /&gt;Success = False&lt;BR /&gt;End If&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;KirtiMaan Talwar&lt;BR /&gt;Consultant&lt;BR /&gt;Deloitte&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Sat, 08 Oct 2022 05:13:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74760#M27365</guid>
      <dc:creator>kirtimaantalwar</dc:creator>
      <dc:date>2022-10-08T05:13:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rename a subject line in outlook.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74761#M27366</link>
      <description>&lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/15499"&gt;@kirtimaantalwar&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;It is working. Thank you so much ​for the solution.​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Sakshi Shivhare&lt;BR /&gt;Application Development Analyst&lt;BR /&gt;Accenture&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Oct 2022 10:34:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74761#M27366</guid>
      <dc:creator>SakshiShivhare</dc:creator>
      <dc:date>2022-10-10T10:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rename a subject line in outlook.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74762#M27367</link>
      <description>Thanks for sharing the code &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/15499"&gt;@kirtimaantalwar&lt;/a&gt; &lt;BR /&gt;​​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Manpreet Kaur&lt;BR /&gt;Manager&lt;BR /&gt;Deloitte&lt;BR /&gt;*If you find this post helpful mark it as Best Answer&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Oct 2022 12:59:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74762#M27367</guid>
      <dc:creator>ManpreetKaur1</dc:creator>
      <dc:date>2022-10-10T12:59:00Z</dc:date>
    </item>
    <item>
      <title>RE: Rename a subject line in outlook.</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74763#M27368</link>
      <description>&lt;H5&gt;I'm glad to hear everything worked out well &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/H5&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;KirtiMaan Talwar&lt;BR /&gt;Consultant&lt;BR /&gt;Deloitte&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Oct 2022 14:28:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Rename-a-subject-line-in-outlook/m-p/74763#M27368</guid>
      <dc:creator>kirtimaantalwar</dc:creator>
      <dc:date>2022-10-10T14:28:00Z</dc:date>
    </item>
  </channel>
</rss>

