Need to Filter outlook mail messages based on Email address

Hello,

I’ll receieve emails from 3 different email address . Need to read only emails from those 3 senders. Any leads helpful

hi @Chaitan

Use get mail message activity of preferred.

For each of mail message.

In If condition item.from.equals(“yourmailaddress1”) or item.from.equals(“yourmailaddress2”) or item.from.equals(“yourmailaddress3”)

Regards

Hi,
You can use the below expression in the ‘Filter’ property of the ‘Get Outlook Mail Messages’ activity.
“[SenderEmailAddress] = ‘emailID1’ OR [SenderEmailAddress] = ‘emailID2’’ OR [SenderEmailAddress] = ‘emailID3’”

@Sowmyalaxmi_Kp Hi
Is that [SenderEmailAddress] only filter that mailmessage have different domain with recevier?
I find it, or I write some wrong problem?

BR,
Donghai

Hii @Chaitan

  • Drag and drop the “Get Outlook Mail Messages” activity onto your workflow.
  • Configure the activity by indicating the email account you want to access (you can add multiple accounts if needed).
  • In the “Filter” property, set the filter conditions to fetch emails only from the three specific senders.

You can use the following filter expression:

[From] = ‘sender1@email.com’ OR [From] = ‘sender2@email.com’ OR [From] = ‘sender3@email.com’

Cheers…!

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