I have an email that gives the first and last name like this:
Name: Keith Tessler;
I have been able to extract the first name with:
{{between_strings email.body “Name:” " " flags=“t”}}
But I can not get the last name. I have tried:
{{between_strings email.body {{custom.FirstName}} “;” flags=“t”}}
{{between_strings email.body “{{custom.FirstName}}” “;” flags=“t”}}
It returned: {{between_strings email.body custom.FirstName “;” flags=“t”}} as the contents of LastName. It did not process it. The email is [email protected] if you would like to take a look.