Need to copy Name, Phone and Email

Hi @suwalruchan365,

Refer this post

Name Value:
Use Matches activity
Properties
Input : strMailContent
Pattern : ((?<=Name:).*(?=Phone:))
Result: iEnumResult ->IEnumberable
after that use assign activity to get the data
strName=iEnumResult (0).ToString()

else
you can split the string using Environment.newLine
then split using : the second value is your value.

Regards,
Arivu