filmov
tv
How to View Multiple Inboxes at Once in Outlook 365
Показать описание
Learn how to create a Unified Inbox in this short tutorial video using Outlook 365. Have multiple email accounts each with their own inbox? Rather than constantly checking each inbox separately, merge them all together so you only need to look at one inbox. I show three different techniques, including using a search folder, writing a macro, and lastly setting up rules. Unfortunately, Outlook on the PC does not support a unified inbox out of the box. However, using these steps, you can easily create a one inbox view that aggregates all of your inboxes together.
For the Macro technique, use the following code:
~~~~~~~Create a unified inbox~~~~~~~
Sub UnifiedInbox()
Dim myOlApp As New Outlook.Application
txtSearch = "folder:Inbox received: (this week)"
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub
~~~~~~~~~~~~~~
~~~~~~~Create a Unified Sent Folder~~~~~~~
Sub UnifiedSentbox()
Dim myOlApp As New Outlook.Application
txtSearch = "folder: (Sent Mail) sent: (this week)"
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub
~~~~~~~~~~~~~~
As full disclosure, I work at Microsoft as a full-time employee.
For the Macro technique, use the following code:
~~~~~~~Create a unified inbox~~~~~~~
Sub UnifiedInbox()
Dim myOlApp As New Outlook.Application
txtSearch = "folder:Inbox received: (this week)"
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub
~~~~~~~~~~~~~~
~~~~~~~Create a Unified Sent Folder~~~~~~~
Sub UnifiedSentbox()
Dim myOlApp As New Outlook.Application
txtSearch = "folder: (Sent Mail) sent: (this week)"
myOlApp.ActiveExplorer.Search txtSearch, olSearchScopeAllFolders
Set myOlApp = Nothing
End Sub
~~~~~~~~~~~~~~
As full disclosure, I work at Microsoft as a full-time employee.
Комментарии