Extracting text from email to notepad

@Llessur

You can use regex to get each value into separate variable and then write it to notepad using write text file or append line activities

(?<=Name\:).*

Namevar = system.Text.RegularExpressions.Regex.Match(emailbodyvariable,"(?<=Name\:).*",RegexOptions.MultiLine).Value.Trim

Replace name with other values then you would get each

Cheers