<?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 Forward Email using smtp in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91426#M41446</link>
    <description>How can I forward email (not send email) using pop3-smtp object like as forward email in the Outlook object.&lt;BR /&gt;VBO pop3-smtp object does not contain forward action. how can I build this action in pop3-smtp object?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;weam samara&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 15 Aug 2022 13:15:00 GMT</pubDate>
    <dc:creator>weamsamara1</dc:creator>
    <dc:date>2022-08-15T13:15:00Z</dc:date>
    <item>
      <title>Forward Email using smtp</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91426#M41446</link>
      <description>How can I forward email (not send email) using pop3-smtp object like as forward email in the Outlook object.&lt;BR /&gt;VBO pop3-smtp object does not contain forward action. how can I build this action in pop3-smtp object?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;weam samara&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Aug 2022 13:15:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91426#M41446</guid>
      <dc:creator>weamsamara1</dc:creator>
      <dc:date>2022-08-15T13:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: Forward Email using smtp</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91427#M41447</link>
      <description>Hello &lt;A class="user-content-mention" data-sign="@" data-contactkey="fd3029be-ecea-477e-b9f9-25cd62aa86bb" data-tag-text="@weam samara" href="https://community.blueprism.com/network/profile?UserKey=fd3029be-ecea-477e-b9f9-25cd62aa86bb" data-itemmentionkey="9ef9f221-64b6-4cf7-87e0-2345342181dd"&gt;@weam samara&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;The POP3/SMTP VBO used the .NET SmtpClient class to perform the sending actions. This class does not expose a specific action for forwarding email. However, you could work around this by using the existing actions on the VBO to save the email you want to forward to disk as a .eml file (along with any attachments) and then create a new email to the destination party and attach the original email.&lt;BR /&gt;&lt;BR /&gt;Does that make sense?&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, 15 Aug 2022 13:45:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91427#M41447</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2022-08-15T13:45:00Z</dc:date>
    </item>
    <item>
      <title>RE: Forward Email using smtp</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91428#M41448</link>
      <description>how can I save the email in .eml file?&amp;nbsp;&lt;BR /&gt;can I do this using smtp object?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;weam samara&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 15 Aug 2022 16:35:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91428#M41448</guid>
      <dc:creator>weamsamara1</dc:creator>
      <dc:date>2022-08-15T16:35:00Z</dc:date>
    </item>
    <item>
      <title>RE: Forward Email using smtp</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91429#M41449</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="fd3029be-ecea-477e-b9f9-25cd62aa86bb" data-tag-text="@weam samara" href="https://community.blueprism.com/network/profile?UserKey=fd3029be-ecea-477e-b9f9-25cd62aa86bb" data-itemmentionkey="949ae828-4c89-41e0-9078-36afa343078a"&gt;@weam samara&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;There is not action at this moment for save the eml , but it is easy to create a new one.&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-csharp" tabindex="0"&gt;&lt;CODE&gt;Message m =_rclient.GetMessage((int)MessageNumber);
FileInfo info = new FileInfo(path);
m.Save(info);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;Is really similar to the action "Get Message". You need to indicate the message id in the variable "MessageNumber" and put the save path in the variable "path"&lt;BR /&gt;&lt;BR /&gt;Then you can send the saved mail with the action "Send Message" adding this as an attachment.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps you!&lt;BR /&gt;&lt;BR /&gt;See you in the Community, bye!&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pablo Sarabia&lt;BR /&gt;Solution Manager &amp;amp; Architect&lt;BR /&gt;Altamira Assets Management&lt;BR /&gt;Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Tue, 16 Aug 2022 06:50:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Forward-Email-using-smtp/m-p/91429#M41449</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-08-16T06:50:00Z</dc:date>
    </item>
  </channel>
</rss>

