(?<=Nome:\s?)(.*)
make sure you have the .* in the group.
You can use a text parser to take the mail hook data and it will find the result using the regex. You’ll get $1 as a variable that will give you the name.
(?<=Nome:\s?)(.*)
make sure you have the .* in the group.
You can use a text parser to take the mail hook data and it will find the result using the regex. You’ll get $1 as a variable that will give you the name.