
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-11-2020 12:39 AM
Hi all,
Just playing around a bit with Inbound Email Flows. To get a feeling for moving from Inbound Actions to Inbound Email Flows. Setting up an Inbound Email Flow works pretty quick, Incoming mail is processed, no worries.
Though…
What about parsing the email body? With Inbound Actions you could use something like "current.body.number", "current.body.something", to get the value on a line in your email body after for example "Number: ", "Something: ", etc..
How to achieve this with Inbound Email Flows?
I tried using for example:
fd_data.trigger.body.number;
fd_data.trigger.body_text.number;
Only this just returns null.
Any ideas? Or is it just like this does not work for Inbound Email Flows and you would need to parse the whole body_text or body?
Kind regards,
Mark
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2020 09:56 AM
Also with Paris no proper solution for this. Or solution... stick with old school Inbound Actions.
Kind regards,
Mark Roethof
Independent ServiceNow Consultant
10x ServiceNow MVP
---
~444 Articles, Blogs, Videos, Podcasts, Share projects - Experiences from the field

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2021 11:31 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2021 11:46 AM
I was actually just playing around with it. The email I was parsing had a lot of HTML in it, and most of the name:value data was not very clean (lot's of single quotes and spaces in the names). It did parse some of it though...just not sure how to use it in the flow. Going to build out a simpler test email to see if it works in the more traditional sense (assigned_to=user name).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-31-2021 05:04 AM
I was just thinking about this today. How is it that inbound actions does it so well? Do they just have more precise code that's obfuscated from view?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-01-2021 05:30 AM
I got the Parse Email Flow Action to work. Folk over at #SNDEVS helped me out. Pretty simple once you figure out where all the nougats are...
1) Use the Parse Email Body Text Flow Action to parse the Trigger>Email Record
2) Use the Email Variables with an inline transform function, utilizing the OOB 'Get item from Name/Values' Transform from the Utilities section. (HINT" use the f(x) in the data pill to access the inline transform function).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-01-2021 06:31 AM
Wait... so all the components are there already? It was just a matter of uttering the right incantation?