Mailatta

  1. Saves the attachments of the top 55 emails that have the specific keyword “00” in the subject line.
  2. The attachments need to be stored in a particular folder.

Hi @Tejaswini_Yadav
For this first read all mails from outlook using read outlook mail activity and store in mail_list

then use this assign activity to filter the mail by subject
mail_list=mail_list.AsEnumerable().Where(Function(mail) mail.Subject.ToString.Contains(“00”)).ToList()

Then loop through each mail in mail_list using for each loop and inside it use save attachment activity to save the attachment.

Regards,
Nived N
Happy Automation