How to get configured mail id from outlook?

How to get configured mail id from outlook which is already configured when more than one mailid configured.

Hey @vijayvvk11

Have you Tried this:?

Outlook.Application Application = new Outlook.Application();
Outlook.Accounts accounts = Application.Session.Accounts;
foreach (Outlook.Account account in accounts)
    {
        Console.WriteLine(account.DisplayName);
    }
1 Like

not able to map the same in UIpath