I am trying to create a automated task where once a email is received, The contents of the body are extracted and put into values for each appropriate property
This is what each email that is received will be formatted as
Welcome to Super View Test
Please login to your account using the details below
Username: Tbqa6@superviewexample.com
Temporary password: 580bee1f
URL: https://qa2.superviewexample.com
Registration Details submitted:
First Name: Test
Last Name: IOS
Phone Number: undefined
Company: IOS Test 1
And I believe this is what it will be formatted as in HTML to Text
<p>Welcome to Super View Test Please login to your account using the details below</p>
<p>Username: Tbqa6@superviewexample.com Temporary password: 580bee1f URL: https://qa2.superviewexample.com</p>
<p>Registration Details submitted:</p>
<p>First Name: Test Last Name: IOS Phone Number: undefined Company: IOS Test 1</p>
I would like to be able to extract Username and populate the property email, First Name populates the firstname property, Last Name populates the lastname property, Phone Number populates the phone number property and Company populates the company property.
This is the flow That I have so far and I am not entirely sure if this is the best way to go about this. Any feedback would be appreciated here.
