My outlook email does not forward the emails

Slim Adkison 0 Reputation points
2026-02-19T19:31:20.2133333+00:00

My outlook email will not forward emails. I need to speak to someone about this issue.

[Moved from Microsoft 365 and Office | Access | For home | Other]

Outlook | Web | Outlook.com | Email

3 answers

Sort by: Most helpful
  1. samzuercher 1 Reputation point
    2026-07-02T13:18:32.15+00:00

    At least if its a business account this seems to be needed and can only be done in powershell:

    Import-Module ExchangeOnlineManagement

    Connect-ExchangeOnline

    Enable-OrganizationCustomization

    Set-HostedOutboundSpamFilterPolicy`` ``-Identity`` ``"Default"`` ``-AutoForwardingMode`` On

    Otherwise forwarding outside of your domain is blocked.

    Was this answer helpful?

    0 comments No comments

  2. Winnie-B 8,630 Reputation points Microsoft External Staff Moderator
    2026-02-20T05:42:50.6966667+00:00

    Hi Slim Adkison

    Thank you for reaching out to Microsoft Q&A Forum. I understand how frustrating it is when Outlook won’t forward your emails, and you prefer to speak with someone directly.

    1. First, please check your forwarding settings in Outlook on the web

    • Sign in to Outlook on the web
    • Select Settings > Mail > Forwarding
    • Make sure:
      • Enable forwarding is turned on
      • The forwarding email address is correct
      • Keep a copy of forwarded messages is checked (recommended)

    You can see this official guide: Turn on automatic forwarding in Outlook - Microsoft Support

    2. Make sure no Inbox rules are blocking or overriding forwarding

    • Still in Outlook on the web, go to Settings > Mail > Rules, review any rules that may move, delete, or stop messages.
    • If something looks unusual, try turning rules off temporarily.

    3. If you want to contact Microsoft Support team directly

    For personal account/product It mainly offer live chat and, depending on your subscription/region, and an option to request a callback. Here's how to reach out directly to the Microsoft Support team.

    • Please go to Contact - Microsoft Support and sign in to your account.
    • Type a brief description of your issue in the search box.    
    • Click "Get Help", then scroll to the bottom and select "Contact Support”.
    • When prompted to select Products & Services, select "Other Products"; Under Category, select "Manage account security".
    • Look for and select "Chat with a support agent in your web browser" (during business hours) or a similar callback option (if available). Explain your situation clearly. User's image

    Please feel free to let me know how it goes. Thank you for your precious time and understanding.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".    

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    Was this answer helpful?


  3. AI answer

    2026-02-19T19:35:25.42+00:00

    If your Outlook email is not forwarding emails, there are several potential causes and solutions you can explore:

    1. Check Mailbox Forwarding: First, ensure that mailbox forwarding is not enabled, as this can interfere with Inbox rules that redirect messages. You can verify this by running the following PowerShell command:
         Get-Mailbox <user ID> | FL ForwardingAddress,ForwardingSmtpAddress,DeliverToMailboxAndForward
      
      If forwarding is enabled, you can disable it with:
         Set-Mailbox <user ID> -DeliverToMailboxAndForward $False
      
    2. Inbox Rules Limit: Make sure that the number of recipients in your forwarding or redirect Inbox rule does not exceed the limit of 10. If it does, consider creating a distribution group to manage the recipients more effectively.
    3. Remote Domain Settings: Check if your mailbox is in a remote domain that has automatic forwarding disabled. You can check this with the following command:
         Get-RemoteDomain | Where {$_.AutoForwardEnabled -eq $False}
      
    4. Outbound Spam Filter: Ensure that the outbound spam filter is not blocking automatic forwarding to external recipients, as this can result in nondelivery reports.

    If these steps do not resolve the issue, it may be beneficial to reach out to Microsoft support for further assistance.

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.