Help transferring email address to match name

Hi I am having issues trying to transfer email address from excel file to another exile file but have it to match name to the email.

1 Like

@meizhhi,

Could you please tell more details and are you getting any error ?

1 Like

I do not how know to do it… Like matching the the email addresses to the name.

1 Like

@meizhhi,

  1. use Get Outlook Mail message activity to read mails from outlook and will give you output as List.

  2. Then iterate it using For each loop
    If item.From.Tostring.contains(“RequiredName”)
    Then continue
    Else stop

1 Like