It is possible to move emails to another

Hi,

It is possible to move emails to another mailbox folder by filtering on the subject line?

Thank You.
Have a nice day.

Hi @MeganQ,

Yes You can Read Email from the source folder., filter by subject and move the matching emails to the target folder:

get outlook mail messages → folder inbox
for each mail
if mail.subject.contain(“website enquiry”)
Move outlook mail message choose destination folder:test

1 Like

Hi @MeganQ,

Use Get Mail Messages, loop through the emails, check mail.Subject.Contains("your text"), and then use Move Mail Message to move them to the required folder.

Thanks

hi @MeganQ,

This can be done by looping through emails and moving those whose subject matches the filter.

Hi @MeganQ

You can use Move Mail Message activity and create a mail rule / filter based on the Subject of the email and move it to another folder.

Example (Outlook):

Create a rule → Condition: Subject contains specific words → Action: Move message to selected folder.

This will automatically move all emails matching the subject to that folder.

If solution works for you please mark as solution and let me know if u face any issue
Thanks

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.