receiving many spam emails from sender renew@

Anonymous
2024-07-16T17:11:22+00:00

Every day I receive 20-30 emails where the sender from address starts with renew@ (see image below) Outlook is placing these messages in the Junk email folder. But, every day I have to scan the Junk mail folder looking for appropriate messages that should have shown up in my Inbox.

I would like to create a Rule that automatically deletes any message in the Junk email folder who's sender name begins with "renew@"

I have actually created a rule but I cannot figure out how to run it against the Junk email folder.

Outlook | Web | Outlook.com | Email

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

59 answers

Sort by: Newest
  1. Anonymous
    2024-08-08T19:37:43+00:00

    It didn't work. I couldn't create the rule for the emails that are already in the junk folder. :-(

    Was this answer helpful?

    0 comments No comments
  2. Ron-6928 4,991 Reputation points
    2024-08-06T21:18:27+00:00

    I'm a 365 subscriber. I request support from 365 admin portal.

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-08-06T19:32:17+00:00

    Wow, thanks a lot! Will try...

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-08-06T19:30:47+00:00

    Yes, that's exactly what I did, hoping that there will bemany of us reporting...

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2024-08-06T18:50:25+00:00

    Here is a simple solution I used to delete every email from renew@ or preview@ for PC user. ( sorry for the Web).

    First create a rule:

    Be sure to select the 2 first option on the Step 2: Setup rule options

    The name of your Junk email and deleted folder will be different from mine.

    Create a VBA macro:

    Sub renew()

    Dim oStores As Outlook.Stores

    Dim oStore As Outlook.Store

    Dim olRules As Outlook.Rules

    Dim myRule As Outlook.Rule

    Dim olRuleNames() As Variant

    Dim name As Variant

    Set oStores = Application.Session.Stores

    For Each oStore In oStores

    On Error Resume Next

    name = "******@outlook.com"

    If oStore.DisplayName = name Then

    Set olRules = oStore.GetRules()

    For Each name In olRuleNames()

    For Each myRule In olRules 
    
        myRule.Execute ShowProgress:=True, Folder:=oStore.GetDefaultFolder(olFolderJunk) 
    
    Next 
    

    Next

    End If

    Next

    End Sub

    You will need to add the developer tab to access VBA and create project.

    Then add the macro to your Quick access tool bar.

    Press the button Project 1.renew and all email from renew@ or preview@ will be move to the deleted folder.

    good luck!

    Was this answer helpful?

    0 comments No comments