Trouble setting up and alias to another domain in our tenant

Jim 306 Reputation points
2025-05-08T15:24:27.81+00:00

Small Business, Standard license.

2 domains in tenant: Domain1, Domain2.

User JoeBlow@domain1 listed in active users with no alias.

Tried to setup an Alias JoeBlow@domain2 but it said that email already exists.

Did a search for JoeBlow@domain2, no results.

Sent email from my personal email address to ******@domain2.com.

JoeBlow@domain1 received this email.

When he replied it came from ******@domain1.com.

We have done this before with no issues, but not for awhile. Has MS changed something where, if your tenant has 2 domains registered, when you set up an email address in one it automatically creates a second one in the other domain with the same username?

I cannot find any reference anywhere to JowBlow@domain2.

Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
5,949 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 118.3K Reputation points MVP Moderator
    2025-05-08T16:01:35.3833333+00:00

    If the test email you sent to ******@domain2.com was received by the account, you likely already have that alias added. But there are some other methods that can be used to ensure that messages are being delivered to the "correct" recipient.

    If you are familiar with PowerShell, you can confirm this by running the Get-Mailbox cmdlet, like this:

    Get-Mailbox ******@domain2.com | select -ExpandProperty EmailAddresses
    

    and in case the above query returns nothing, you can double check via

    Get-Recipient ******@domain2.com
    

    That second cmdlet will return any object within your tenant that might have the alias configured on it.

    Another thing you can do is run a message trace and check the detailed information therein, it will tell you how/why the message got to the final recipient. Here's the relevant article: https://learn.microsoft.com/en-us/Exchange/monitoring/trace-an-email-message/message-trace-modern-eac

    0 comments No comments

Your answer

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