
Announcements
i need to extract the Name, email address and phone number from the following email. I'm having issue with <email@address>
"
From: Nomagugu Hloma <nomaguguhloma@gmail.com>
Message Body:
How does the rent to own work?
Phone Number: 064508388"
Regards
Hi @marco_za ,
Do you want to extract the Name, email address and phone number from email body?
If so,I have a test for your reference.
In my scenario:
split(split(outputs('Html_to_text')?['body'],'From:')[1],'<')[0]split(split(outputs('Html_to_text')?['body'],'<')[1],'>')[0]split(split(outputs('Html_to_text')?['body'],'Number:')[1],'"')[0]Best Regards,
Sunshine Gu