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: Oldest
  1. Ron-6928 4,991 Reputation points
    2024-07-31T16:02:05+00:00

    Seems? It's a fact there are many spam victims and it's been going on and off for years. It's a whack a mole game between spammers and email providers.

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. Anonymous
    2024-07-31T21:59:13+00:00

    Yes, I meant the "renew" and "preview" group...

    How long should it last before they react?

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-08-06T13:44:25+00:00

    @Ron6576 How did you contact support? I cannot figure out how to do so and I also am experiencing countless emails from renew@ that just a few days ago now started coming from preview@. I'd like to report this somehow but cannot figure out how/where to do so.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-08-06T15:03:36+00:00

    Hi,

    I am using Outlook Web Mail.

    There are three menu choices at the top Home, View, Help.

    Select Help and you see three options below.

    Select Feedback. On the far right side of the screen you get Feedback options.

    You get three options: give a compliment, report a problem, make a suggestion

    Choose report a problem

    Type a description of the problem below in the text box then scroll down and click Submit

    Was this answer helpful?

    1 person found 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