@George OCAK Since you are using the single-tenant logic app offering, you can use the inline code action to perform a simple regex match for what you need from the email. Using the following regex should extract the name and the email as separate groups.
/^From: (.*)<(.*)>$/
You can use the above regex with the match() function for strings in JS within the inline code action.