cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Anonymous
Not applicable

Read email content from body of the email, extract and create conditions or actions

I would love to be able to create a flow that can read the body of the email not just subject or attahcments names.  Once it can read the body of the text and find key words, extract some of this content. Identify if its a date or string and create a calendar event, etc. 

 

1 ACCEPTED SOLUTION

Accepted Solutions
v-xida-msft
Community Support
Community Support

Hi @Anonymous,

 

Could you please share an example about your scenario?

Do you want to extract content from body of the email?

 

I assume that the details of your incoming email as below and you want to extract the Subject and End time content from Body of the email:2.JPGI have made a test on my side and please take a try with the following workaround:

  • Add a "When a new email arrives" trigger.
  • Add a "Html to text" action, Content field set to Body dynamic content of the trigger.
  • Add a "Compose" action, Inputs set to following formula:
  • length(body('Html_to_text'))
    Add a "Compose 2" action, Inputs set to following formula:

 

add(indexOf(body('Html_to_text'),'End time'),10)
  • Add a "Compose 3" action, Inputs set to following formula:
  • substring(body('Html_to_text'),outputs('Compose_2'),sub(outputs('Compose'),outputs('Compose_2')))
    Add a "Compose 4" action, Inputs set to following formula:
  • add(indexOf(body('Html_to_text'),'Subject'),9)
    Add a "Compose 5" action, Inputs set to following formula:
  • indexOf(body('Html_to_text'),'Start time')
    Add a "Compose 6" action, Inputs set to following formula:
  • substring(body('Html_to_text'),outputs('Compose_4'),sub(outputs('Compose_5'),outputs('Compose_4')))
    Add a "Create event (V1)" action, specify Calendar id, End time field set to output of "Compose 3" action, Start time field set to following formula:
utcNow()

Subject field set to output of "Compose 6" action.

 

Image reference:3.JPG

 

4.JPG

The flow works successfully as below:5.JPG7.JPG

 

6.JPG

 

Best regards,

Kris

 

 

 

 

 

 

 

 

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

21 REPLIES 21
v-xida-msft
Community Support
Community Support

Hi @Anonymous,

 

Could you please share an example about your scenario?

Do you want to extract content from body of the email?

 

I assume that the details of your incoming email as below and you want to extract the Subject and End time content from Body of the email:2.JPGI have made a test on my side and please take a try with the following workaround:

  • Add a "When a new email arrives" trigger.
  • Add a "Html to text" action, Content field set to Body dynamic content of the trigger.
  • Add a "Compose" action, Inputs set to following formula:
  • length(body('Html_to_text'))
    Add a "Compose 2" action, Inputs set to following formula:

 

add(indexOf(body('Html_to_text'),'End time'),10)
  • Add a "Compose 3" action, Inputs set to following formula:
  • substring(body('Html_to_text'),outputs('Compose_2'),sub(outputs('Compose'),outputs('Compose_2')))
    Add a "Compose 4" action, Inputs set to following formula:
  • add(indexOf(body('Html_to_text'),'Subject'),9)
    Add a "Compose 5" action, Inputs set to following formula:
  • indexOf(body('Html_to_text'),'Start time')
    Add a "Compose 6" action, Inputs set to following formula:
  • substring(body('Html_to_text'),outputs('Compose_4'),sub(outputs('Compose_5'),outputs('Compose_4')))
    Add a "Create event (V1)" action, specify Calendar id, End time field set to output of "Compose 3" action, Start time field set to following formula:
utcNow()

Subject field set to output of "Compose 6" action.

 

Image reference:3.JPG

 

4.JPG

The flow works successfully as below:5.JPG7.JPG

 

6.JPG

 

Best regards,

Kris

 

 

 

 

 

 

 

 

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Kris,

 

My apologies for the late reply. I appreciate how creative the proposed solution is!

 

 

Thank you,

 

JP 

Anonymous
Not applicable

Thanks for the detailed desciption, I tried to run it as described above but hot the following error;

 

The string was not recognized as a valid DateTime. There is an unknown word starting at index 10. clientRequestId: c7e6674c-5d20-458b-b65a-c692c6fef136

@v-xida-msft I know this is an old thread, but I found it while looking for a solution to the same problem.

 

The difference with mine is the data I'm looking for doesn't match a nice pattern that can be easily defined by say.. add(indexof ......), 10

 

For example the email has this data:

 

Enquiry from: Firstname Lastname
Email: user@gmail.com
Phone Number: 0299999876
First Night: Thursday, 17 January 2019
Number of Nights: 2

 In each of these lines the number of characters to add to the indexof is different for each email.

 

How can I use a function to grab everything between the colon and the new line, trim it and place it in a variable?

 

I will also put this in a new thread.

Hi @Kris

 

Can you explain how to convert this example if the details repeated, how to loop through all iterations? I have a similar case, the number of items per email does very.

 

Outlook Calendar event details as below

Subject: FirstTestEvent
Start Time: 4/20/2019
End Time: 4/21/2019

 

Subject: SecondTestEvent
Start Time: 4/21/2019
End Time: 4/22/2019

 

Subject: ThirdTestEvent
Start Time: 4/22/2019
End Time: 4/23/2019

 

 

 

@HallieGUse the Split() expression to split on 'Subj' and then run the resulting array through a for-each.

Did you find any solutions to this? I'm trying to figure the same thing out. How to do this for data that might be a bit unstructured. For example, how do I grab whatever is between a "$" and ":" sign?

Hi! Did you ever find out how to do this? I'm facing the same issue.....

Anyone know how to do it as said in last posts here?

@Yanger @Brammers & @sxt173 Yes I have solved this. A long time ago I wrote a lengthy response in this thread with detailed steps and an explanation of how it all works. I spotted some typos, then did a couple of edits to fix them and it disappeared pending moderation. It has never re-appeared.

 

Probably enough time has passed to get over this immense frustration and I can re-do it. Maybe this weekend if I remember.

A somewhat abridged version of my original deleted reply:

 

Starting with this sample data:

Enquiry from: Firstname Lastname
Email: user@gmail.com
Phone Number: 0299999876
First Night: Thursday, 17 January 2019
Number of Nights: 2

To grab any of those fields in Flow you use a formula like this (example grabs the email)

 

trim(substring(body('Html_to_text'),add(indexOf(body('Html_to_text'),'Email: '),7),sub(indexOf(body('Html_to_text'),'Phone Number: '),add(indexOf(body('Html_to_text'),'Email: '),7))))
 
So I'll break it down.
trim(
	substring(
		body('Html_to_text'),
		add(
			indexOf(
				body('Html_to_text'),
				'Email: '
				),
			7),
			sub(
				indexOf(
					body('Html_to_text'),
					'Phone Number: '),
		add(
			indexOf(
				body('Html_to_text'),
				'Email: '
				        ),
			7)
		)
	)
)

The subsstring() function has 3 inputs, 1. the source string, 2. the start index, which is the number of characters into the string to start looking and 3. the length.

 

The objective therefore, is to derive 2. and 3. so we can grab the relevant text no matter how long is it.

 

So firstly we need to know how many characters into the source text to start. This is relatively easy:

add(
	indexOf(
		body('Html_to_text'),
		'Email: '
	   ),
7)

The indexOf() function finds the number of characters into a text string that a string occurs. Here we are calculating the indexOf() the string "Email: " it doesn't matter where in the original message body this occurs, indexOf() will find it and return a number.

 

Now we don't actually want the string "Email: " in the output of this expression so we now add() a number to the output of indexOf() to get the number of characters into the message body the end of "Email: " occurs. We don't calculate this dynamically; it's 7, including the space.

 

So by using indexOf() to find the place in the source string where "Email: " exists, then adding that number of characters to it, we get the point we want to start reading the email address.

 

Next we have to calculate the length of the string, for the 3rd parameter of substring():

sub(
	indexOf(
			body('Html_to_text'),
			'Phone Number: '),
	add(
		indexOf(
			body('Html_to_text'),
			'Email: '
			),
		7)
	)

To do this we use the sub() function to subtract the number we just calculated from the indexOf() the place we want to stop looking. Thus a lot (the second parameter of sub()) of the expression above is similar to the one before - calculating the number of characters into the source string that our relevant text starts.

 

The first parameter of sub() is the place where our relevant text ends - which in this case is the start of the string "Phone Number: ". We don't need to do anything complex with this because it's the start of the string we want the index of, not the end.

 

So we now have our 3 parameters for substring(), the source text, which is body('Html_to_text') in this example, the number of characters into that where we find the start of our substring and lastly length, which is calculated by subtracting the former from the number of characters into the source text where we want to stop looking.

 

Finally, in my example I've wrapped trim() around the whole thing to eliminate any trailing whitespace.

 

You could probably improve upon this by calculating the number of characters where your desired string starts in a compose action, then using that as dynamic content in the expression to simplify it a bit, instead of repeating the same formula twice in the one expression.

@WillPage I want to do exactly the same thing, I need to get an email address from the body of an email and send a new email to that address. My email account is Gmail. Where do I place the code you posted below? (totally new to flow). Obviously my first condition is "When a new email arrives" and I assume the next is where I paste your code but you don't mention what type of action to select. And I also assume my next action is to send a new email but what do I put in the "to" field there?

@pjmarcumStraight after your trigger, add an HTML to Text action and put the body of the email from the trigger in there. Next, add a Compose and put the expression there, using the output of the previous HTML to Text action in the expression.

LOL.... I'm sure this is great feedback but unfortunately way above my expertise. 🙂

Anonymous
Not applicable

Hi @v-xida-msft ,

 

My case is a little different and I want to extract the email address after the From: of a forwarded email. Does the number of Compose change and do I need to change the code for them? 

 

vradley_0-1597937641125.png

 

 

 

amenegatti
New Member

Hello Team,

 

Any recommendations on trying to extract say a reference number that will start with CX but could be anywhere in the email body on any new email. there is no set template and can come through anytime. 

 

Regards, 

 

Andy 

WillPage
Memorable Member
Memorable Member

If the reference number is always the same number of characters then you would use substring like this. Assume it's a 8 character reference including the CX (and you want to keep the CX in the substring)

substring(body('HTML_to_Text'),indexOf(body('HTML_to_Text'),'CX'),8)

 

..where body('HTML_to_Text') is the output of your HTML to text conversion action.

 

A few pitfalls: This will always find the first instance of CX in the text. If you have many then it's more complicated finding the right one.

 

Thankfully there are few ordinary words with cx in them but there's a small chance of picking that up too.

 

Another method you could use is this:

 

Split(body('HTML_to_Text'),'CX') to create an array of strings that start at each instance of CX (without the actual CX bit at the front), with the first item being the start of the whole input..

 

Now if your ref numbers are always 8 characters including CX you add a Select action, click the little icon to change from key-value input to JSON input and do this in the expression editor concat('CX',substring(item(),0,6).

 

The resulting array will be a list of possible reference numbers. Not knowing what they look like I can't advise how to filter out invalid ones (the first one will almost certainly be invalid) but at this point you can do further processing to get rid on any bogus elements in the array and hone down to the valid one(s).

 

Kris,

I have a similar situation that I need help on. In my case, the fields of the form input are displayed in the email like this (with the relevant information I want to extract in the line or lines below the field header):

 

fscutaro_1-1673270184763.png

The problem I've encountered is that in some cases, the requestor can fill out more than one item per field and that adds lines to the email like this:

fscutaro_3-1673270299074.png

I’ve been able to create a flow that converts the HTML to text and then returns data by extracting data by line. The issue is that there are some conditional fields in the form and that adds lines to the email. There is also the ability to select multiple responses for certain fields and that also adds lines to the email. When that happens the result is that the extract is incorrect.


My thought is to search the field names and have Power Automate select all the text between names (terms), after I’ve converted the email body to text from HTML.


So my questions are; 1) Is that a sound approach and 2) what expressions should I use for that action?

Please let me know your thoughts. Thanks.

Helpful resources

Announcements

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Unlocking Community Achievements and Earning Badges

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!     THIS WEEK'S TIP: Unlocking Achievements and Earning BadgesAcross the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. These badges each signify a different achievement--and all of those achievements are available to any Community member! If you're a seasoned pro or just getting started, you too can earn badges for the great work you do. Check out some details on Community badges below--and find out more in the detailed link at the end of the article!       A Diverse Range of Badges to Collect The badges you can earn in the Community cover a wide array of activities, including: Kudos Received: Acknowledges the number of times a user’s post has been appreciated with a “Kudo.”Kudos Given: Highlights the user’s generosity in recognizing others’ contributions.Topics Created: Tracks the number of discussions initiated by a user.Solutions Provided: Celebrates the instances where a user’s response is marked as the correct solution.Reply: Counts the number of times a user has engaged with community discussions.Blog Contributor: Honors those who contribute valuable content and are invited to write for the community blog.       A Community Evolving Together Badges are not only a great way to recognize outstanding contributions of our amazing Community members--they are also a way to continue fostering a collaborative and supportive environment. As you continue to share your knowledge and assist each other these badges serve as a visual representation of your valuable contributions.   Find out more about badges in these Community Support pages in each Community: All About Community Badges - Power Apps CommunityAll About Community Badges - Power Automate CommunityAll About Community Badges - Copilot Studio CommunityAll About Community Badges - Power Pages Community

Tuesday Tips: Powering Up Your Community Profile

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Tip: Power Up Your Profile!  🚀 It's where every Community member gets their start, and it's essential that you keep it updated! Your Community User Profile is how you're able to get messages, post solutions, ask questions--and as you rank up, it's where your badges will appear and how you'll be known when you start blogging in the Community Blog. Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile.     Password Puzzles? No Problem! Find out how to sync your Azure AD password with your community account, ensuring a seamless sign-in. No separate passwords to remember! Job Jumps & Email Swaps Changed jobs? Got a new email? Fear not! You'll find out how to link your shiny new email to your existing community account, keeping your contributions and connections intact. Username Uncertainties Unraveled Picking the perfect username is crucial--and sometimes the original choice you signed up with doesn't fit as well as you may have thought. There's a quick way to request an update here--but remember, your username is your community identity, so choose wisely. "Need Admin Approval" Warning Window? If you see this error message while using the community, don't worry. A simple process will help you get where you need to go. If you still need assistance, find out how to contact your Community Support team. Whatever you're looking for, when it comes to your profile, the Community Account Support Knowledge Base article is your treasure trove of tips as you navigate the nuances of your Community Profile. It’s the ultimate resource for keeping your digital identity in tip-top shape while engaging with the Power Platform Community. So, dive in and power up your profile today!  💪🚀   Community Account Support | Power Apps Community Account Support | Power AutomateCommunity Account Support | Copilot Studio  Community Account Support | Power Pages

Super User of the Month | Chris Piasecki

In our 2nd installment of this new ongoing feature in the Community, we're thrilled to announce that Chris Piasecki is our Super User of the Month for March 2024. If you've been in the Community for a while, we're sure you've seen a comment or marked one of Chris' helpful tips as a solution--he's been a Super User for SEVEN consecutive seasons!   Since authoring his first reply in April 2020 to his most recent achievement organizing the Canadian Power Platform Summit this month, Chris has helped countless Community members with his insights and expertise. In addition to being a Super User, Chris is also a User Group leader, Microsoft MVP, and a featured speaker at the Microsoft Power Platform Conference. His contributions to the new SUIT program, along with his joyous personality and willingness to jump in and help so many members has made Chris a fixture in the Power Platform Community.   When Chris isn't authoring solutions or organizing events, he's actively leading Piasecki Consulting, specializing in solution architecture, integration, DevOps, and more--helping clients discover how to strategize and implement Microsoft's technology platforms. We are grateful for Chris' insightful help in the Community and look forward to even more amazing milestones as he continues to assist so many with his great tips, solutions--always with a smile and a great sense of humor.You can find Chris in the Community and on LinkedIn. Thanks for being such a SUPER user, Chris! 💪 🌠  

Find Out What Makes Super Users So Super

We know many of you visit the Power Platform Communities to ask questions and receive answers. But do you know that many of our best answers and solutions come from Community members who are super active, helping anyone who needs a little help getting unstuck with Business Applications products? We call these dedicated Community members Super Users because they are the real heroes in the Community, willing to jump in whenever they can to help! Maybe you've encountered them yourself and they've solved some of your biggest questions. Have you ever wondered, "Why?"We interviewed several of our Super Users to understand what drives them to help in the Community--and discover the difference it has made in their lives as well! Take a look in our gallery today: What Motivates a Super User? - Power Platform Community (microsoft.com)

March User Group Update: New Groups and Upcoming Events!

  Welcome to this month’s celebration of our Community User Groups and exciting User Group events. We’re thrilled to introduce some brand-new user groups that have recently joined our vibrant community. Plus, we’ve got a lineup of engaging events you won’t want to miss. Let’s jump right in: New User Groups   Sacramento Power Platform GroupANZ Power Platform COE User GroupPower Platform MongoliaPower Platform User Group OmanPower Platform User Group Delta StateMid Michigan Power Platform Upcoming Events  DUG4MFG - Quarterly Meetup - Microsoft Demand PlanningDate: 19 Mar 2024 | 10:30 AM to 12:30 PM Central America Standard TimeDescription: Dive into the world of manufacturing with a focus on Demand Planning. Learn from industry experts and share your insights. Dynamics User Group HoustonDate: 07 Mar 2024 | 11:00 AM to 01:00 PM Central America Standard TimeDescription: Houston, get ready for an immersive session on Dynamics 365 and the Power Platform. Connect with fellow professionals and expand your knowledge. Reading Dynamics 365 & Power Platform User Group (Q1)Date: 05 Mar 2024 | 06:00 PM to 09:00 PM GMT Standard TimeDescription: Join our virtual meetup for insightful discussions, demos, and community updates. Let’s kick off Q1 with a bang! Leaders, Create Your Events!  Leaders of existing User Groups, don’t forget to create your events within the Community platform. By doing so, you’ll enable us to share them in future posts and newsletters. Let’s spread the word and make these gatherings even more impactful! Stay tuned for more updates, inspiring stories, and collaborative opportunities from and for our Community User Groups.   P.S. Have an event or success story to share? Reach out to us – we’d love to feature you!

Users online (6,022)