'Get Mailbox Name Of Current Active (Or Open) Email

I have existing VBA code that performs some tasks on a selected email. This is ok. I have two mailboxes in Outlook 2013.

What I need to determine when I execute the VBA code is which mailbox the selected email is from; Mailbox1 or Mailbox2.



Solution 1:[1]

Use MailItem.Parent (returns MAPIFolder object), then use MAPIFolder.Store.Name to figure out the name of the current store.

If you actually need to figure out the address of the store's owner, you will need to use Extended MAPI (C++ or Delphi only) or Redemption (I am its author) - use RDOExchangeMailboxStore.Owner.Name.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1