My goal is to extract Name and Phone number from a particular email and send that information in a slack channel.
STEP 1: Using Event: New Email Matching Search I am able to located the email to search for.
STEP 2: I then am using Formatter by Zappier to extract the name
Event: Text
Transform: Extract pattern
Pattern: (?<=\*First Name\*:\* )oa-zA-Z ]*
STEP 3: I then am using Formatter by Zappier to extract the name
Event: Text
Transform: Extract pattern
Pattern: (?<=\*Applicant's Daytime Telephone Number:\* )\d{10}
STEP 4: Sending message in Slack
My sample Date:
A*First Name*:* Hello
*Last Name*:* test
*Date of birth (mm/dd/yyyy)*:* 2023-02-01
*Applicant's Daytime Telephone Number:* 1234567890
*Applicant's Mobile Telephone Number:*
*Applicant's Email address:*
In the above example I would extra “Hello” and “1234567890”
Is there a way to combine Steps 2 and 3 into one step?