Capital Letters in email address

Michael Shparber 141 Reputation points
2022-07-03T11:32:14.967+00:00

I have this email in 365:
******@mycompany.com
I want it to be shown to my recipients as:
******@MyCompany.com
I know email domains are case-insensitive, I just want the address to appear like this in my recipient's email for improved readability.
How can I achieve this?

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,787 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Aholic Liang-MSFT 13,861 Reputation points Microsoft Vendor
    2022-07-04T11:21:36.687+00:00

    Hi @Michael Shparber ,
    May I ask where the recipient is viewing your mail address?

    According to my research, you could change the display name of your account for improved readability.
    Alternatively, you could edit the UPN addresses for the Office 365 user by using Azure Active Directory Module for Windows PowerShell. However, the address displayed to the recipient still appears to be lowercase after the change.

    1.Import Azure Active Directory Module for your PowerShell:

    import-module MSOnline  
    

    2.Connect to Office 365 by running this cmdlet:

    $msolcred = get-credential  
    connect-msolservice -credential $msolcred  
    

    3.Change the UPN of your user:

    Set-MsolUserPrincipalName -UserPrincipalName <current UPN> -NewUserPrincipalName <new UPN>  
    

    217310-2022-7-4-4.png

    217327-2022-7-4-3.png


    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.

    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.