R
Richard Lewis Haggard
Here's a real easy one. I'm trying to re-enable the display of email as it
comes it if it is being delivered to a particular mail folder but I've
forgotten how to do that. I've got the system to recognize when email
arrives to the default folder, but that's not the right one. The folder I
actually want is Inbox\CTSx Team. The folder I'm actually getting is Inbox.
My macro looks something like this:
Private WithEvents CTSxEmail as Outlook.Items
Private Sub Application_Startup
Set CTSxEmail = Application.Session.GetDefaultFolder(
olFolderInbox).Items
End Sub
comes it if it is being delivered to a particular mail folder but I've
forgotten how to do that. I've got the system to recognize when email
arrives to the default folder, but that's not the right one. The folder I
actually want is Inbox\CTSx Team. The folder I'm actually getting is Inbox.
My macro looks something like this:
Private WithEvents CTSxEmail as Outlook.Items
Private Sub Application_Startup
Set CTSxEmail = Application.Session.GetDefaultFolder(
olFolderInbox).Items
End Sub