<?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>question Forward email action in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/forward-email-action/m-p/3504939#M6310</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to configure Inbound Email action for Forward type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If any email is forward from 3rd party to instance ID then Email body gets added into the existing Incident's Additional comment.&lt;/P&gt;&lt;P&gt;How to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried but due to different watermark it is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 10 Mar 2026 11:37:53 GMT</pubDate>
    <dc:creator>Pallavi Shinde2</dc:creator>
    <dc:date>2026-03-10T11:37:53Z</dc:date>
    <item>
      <title>Forward email action</title>
      <link>https://www.servicenow.com/community/community-central-forum/forward-email-action/m-p/3504939#M6310</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need to configure Inbound Email action for Forward type&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If any email is forward from 3rd party to instance ID then Email body gets added into the existing Incident's Additional comment.&lt;/P&gt;&lt;P&gt;How to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried but due to different watermark it is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 11:37:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/forward-email-action/m-p/3504939#M6310</guid>
      <dc:creator>Pallavi Shinde2</dc:creator>
      <dc:date>2026-03-10T11:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Forward email action</title>
      <link>https://www.servicenow.com/community/community-central-forum/forward-email-action/m-p/3504958#M6311</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/221073"&gt;@Pallavi Shinde2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Basically you won't be able to use the watermark for forwarded emails. Instead, configure a custom Inbound Email Action that extracts the Incident number from the subject/body and updates the Incident's Additional comments.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this script :&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;//in Inbound Email Action
var subject = email.subject;
var body = email.body_text;

var match = subject.match(/INC\d+/);
if (match) {
    var incNumber = match[0];
    var inc = new GlideRecord('incident');
    if (inc.get('number', incNumber)) {
        inc.comments.setJournalEntry(body);
        inc.update();
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If my response helped mark as helpful and accept the solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 12:08:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/forward-email-action/m-p/3504958#M6311</guid>
      <dc:creator>yashkamde</dc:creator>
      <dc:date>2026-03-10T12:08:01Z</dc:date>
    </item>
  </channel>
</rss>

