0

I am new to writing code and am not sure how to go from the default inbox which is mine to a shared email inbox.

Set Folder = OutlookNamespace.GetDefaultFolder(olFolderInbox).Folders("Appointments")
  • Possible duplicate of [Get reference to additional Inbox](https://stackoverflow.com/questions/9076634/get-reference-to-additional-inbox) – niton Oct 15 '19 at 15:13

1 Answers1

0

Try : getshareddefaultfolder

Dim OutNS As Outlook.Namespace
Set Folder = OutNS.GetSharedDefaultFolder(objOwner, olFolderInbox)
Yosh
  • 38
  • 7