If you install outlook in your system then use Get Outlook Mail message activity and create a variable for mailmessages
Use ForEach activity to loop and change the typeArgument to system.Net.Mail.MailMessage
Inside the For Each activity place a Assign actvity and write as mailBody = item.Headers(“Body”).ToString
Now use Regex to retrive your information
Example use Assign and write as Name = System.Text.RegularExpressions.Regex.Match(mailBody,“(?<=Name).+”).Value
This will store the name value in the Name variable
like wise you can create multiple variables to store surname, location, age etc.,