ExchangeServer load Email

TK_Sun 1 Reputation point
2021-11-01T03:06:53.667+00:00

How to use C#Progarming to load Email which on ExchangeServer2019

ExchangeServer sign in Enterprise email Administrator Account
Now I want to read Subaccount‘s Email without Subaccount‘s password

Waitting for your answers

Exchange Server Development
Exchange Server Development
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Development: The process of researching, productizing, and refining new or existing technologies.
502 questions
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,279 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Glen Scales 4,431 Reputation points
    2021-11-02T22:38:13.607+00:00

    >ExchangeServer sign in Enterprise email Administrator Account

    Best practice is to never use Administrator accounts in any application, in Exchange especially it won't work because an Admin account (or any user) only has explicit rights to their own mailbox to access another users mailbox permissions need be granted explicitly either via Add-MailboxPermission or Add-MailboxFolderPermission (regardless of your administration rights)

    The other option if you need to access many mailboxes within a particular Exchange Organization is to use Impersonation in EWS see https://learn.microsoft.com/en-us/exchange/client-developer/exchange-web-services/impersonation-and-ews-in-exchange again for this don't use your administer account create an application specific account and then grant that impersonation rights.