Hello,
I'm using a contact form plugin on a website to collect form submissions which get emailed to me.
These emails are templated, so the subject is set, there are fields/values set all in HTML as well with values on each line
For example:
Subject: Student Applicant | James
HTML Body Preview:
<div>
<p><span>Full Name: </span><span>James</span></p>
<p><span>Email Address: </span><span>james@gmail.com</span></p>
<p><span>Phone Number: </span><span>08080808080</span></p>
</div>
Looks like:
Full Name: James
Email Address: james@gmail.com
Phone Number: 080808080
Now, I'm using Office 365 for Business. I've setup an email rule so that subjects with the above term automatically go into the "Students" email folder.
From Flow, I've created the first step which collects an email once it arrives in that folder, which is fine.
I also have an Excel Spreadsheet in my OneDrive Business which has a table with columns: "Full Name", "Email Address" and "Phone Number".
Now here's the problem: how can I select each value from the email body?
I want to be able to select the value of "Full Name" which is "James" and make sure that can be added to the spreadsheet, but the main problem is I can't even select these values.
I was wondering if JSON Parse can help, but I have no experience in using JSON or know how the functions work in Flow. I've got experience in programming, but this is a little out of scope from what I've done before.
Any suggestions would be greatly appreciated! Thank you.