You want to automatically manage emails from new contacts, like moving their first message to a review folder. Outlook’s rules engine can check if a sender is in your contacts, but it lacks a direct “first email” trigger. This creates a common automation challenge for filtering introductory messages.
The standard “from people or public group” rule condition will act on every email from that sender once added. To make a rule fire only once per new sender, you must combine a contact check with a follow-up action that prevents the rule from running again.
This article explains how to build this logic using a rule to move the email and a second, hidden rule to stop future processing for that sender.
Key Takeaways: Creating a One-Time Rule for New Senders
- Rule Condition “except if from people or public group”: This core condition checks if the sender is already in your Outlook Contacts, ensuring the rule only runs for new senders.
- Rule Action “stop processing more rules”: Adding this action to a secondary, hidden rule prevents the main rule from firing on subsequent emails from the same sender.
- Contacts Folder vs. Suggested Contacts: The rule checks your main default Contacts folder, not the automatically created Suggested Contacts list, for determining a “new” sender.
How the Rule Logic Works for First-Time Senders
Outlook rules are a set of conditions, actions, and exceptions you define to manage messages automatically. A rule triggers when an incoming email meets all its specified conditions.
For this specific goal, the primary condition is an exception: “except if the sender is in my Contacts folder.” When an email arrives, Outlook evaluates this. If the sender’s address is not found in your default Contacts, the exception is false, so the rule’s main actions proceed. If the address is found, the exception is true, and the rule stops.
Prerequisites for the Rule
You need a destination for the emails, like a folder named “New Senders” or “To Review.” Create this folder in your mailbox before starting. The rule also requires your main Contacts folder to be the active address book. This is the default setting in most configurations.
The method uses two rules. The first is the visible rule that moves the email. The second is a separate, client-only rule that runs afterward to add the sender to your Contacts and stop all future rule processing for their messages. This two-step process is what creates the “first email only” behavior.
Steps to Create the One-Time Rule
- Create the main “First Email” rule
Go to File > Manage Rules & Alerts. In the Rules and Alerts window, click New Rule. Select “Apply rule on messages I receive” and click Next. - Set the condition to check for new senders
In the condition list, scroll down and check the box for “except if from people or public group.” In the rule description box at the bottom, click the underlined “people or public group” link. In the address book selector, choose Contacts from the dropdown and click OK. Click Next. - Define the action for the first email
Select what you want to happen. For example, check “move it to the specified folder” and then click the underlined “specified” link to choose your “New Senders” folder. You can also add other actions like marking it as read or categorizing it. Click Next. - Add any exceptions and name the rule
You typically will not add further exceptions here. Click Next. Name the rule, for example, “First Email from New Sender.” Ensure “Turn on this rule” is checked. Click Finish. - Create the secondary “Stop Future Processing” rule
Back in the Rules and Alerts window, click New Rule again. Select “Apply rule on messages I receive” and click Next. Do not select any conditions. Click Yes to confirm you want to run the rule on all messages. Click Next. - Set the secondary rule’s actions
Check two action boxes: First, check “add sender to Contacts.” Second, and critically, check “stop processing more rules.” Click Next, add no exceptions, and click Next again. - Name and order the rules correctly
Name this rule “Add Sender and Stop.” Uncheck “Run this rule now on messages already in Inbox.” Click Finish. In the Rules and Alerts list, use the arrow buttons to ensure the “First Email from New Sender” rule is above the “Add Sender and Stop” rule. Click Apply and OK.
Common Mistakes and Limitations
The Rule Moves Every Email from a New Sender
This happens if the two rules are in the wrong order. The “Add Sender and Stop” rule must run after the main rule. If it runs first, it adds the sender to Contacts immediately, so the main rule’s “except if” condition is always true for that email. Check the rule order in File > Manage Rules & Alerts and move the stop rule lower.
Emails from Known Contacts Are Still Being Moved
The rule checks your default Contacts folder. If you have contacts stored in a secondary address book or a subfolder not set as an address book, the rule may not see them. Verify the contact exists in your main Contacts folder. Also, the rule matches the exact SMTP email address. A contact card with a different address field will not match.
The Rule Does Not Work on Outlook on the Web or Mobile
Rules that use the “add sender to Contacts” or “stop processing more rules” actions are client-only rules. They run only on the Outlook for Windows desktop app where they were created. They will not sync or run on Outlook on the web, Mac, or mobile devices. For full account sync, you would need a different approach using Power Automate.
Rule Methods for First-Time Senders: Comparison
| Item | Two-Rule Method (Desktop) | Manual or Alternative Methods |
|---|---|---|
| Automation Level | Fully automatic after setup | Requires manual review or other tools |
| Works on Outlook Web/Mobile | No, client-only rules | Yes, if using server-side rules or flags |
| Complexity | Medium, requires correct rule ordering | Low to high depending on method |
| Relies on Contacts Folder | Yes, as the reference list | May use categories or folders instead |
| Prevents Repeat Actions | Yes, via stop processing more rules | May require separate archive rule |
You can now automatically filter the first email from any new contact into a designated folder. The two-rule system ensures this happens only once per sender. For a related automation, try creating a rule that files emails with specific keywords after you have read them. An advanced tip is to use the Rules Wizard’s “with specific words in the sender’s address” condition to exclude entire domains, like @newsletters.com, from ever being added to your Contacts by the secondary rule.