How to download attachments from a specific outlook mail

@Juni2799

  1. Use Get Outlook MailMessage Activity to read mails from outlook. If you want to read specific mails then pass subject into filter option like below and will give output as List of Mail Messages and name it as mailMessage

"[Subject] = ‘Subject of the Mail’ "

  1. Then use For Each loop to itreate that list of mails.

ForEach item in mailMessage
- use Save Attachments Activity to
save the attachments