Jack Farnan
New Member
- Outlook version
- Outlook 2010 32 bit
- Email Account
- Exchange Server 2010
Hi All,
Im very new so bear with me please.!!
I have a macro that pops up before I send a message to remind me to place it in a category (that I got online) as below.
'Categorize Sent Items
'Place in ThisOutlookSession
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If TypeOf Item Is Outlook.MailItem And Len(Item.Categories) = 0 Then
Set Item = Application.ActiveInspector.CurrentItem
Item.ShowCategoriesDialog
End If
End Sub
This works fine for me personal mailbox but doesn't when replying via the shared mailbox I only see my own personal categories and not that of the shared mailbox. Is it possible to select from the shared mailbox categories?
Thanks in advance
Jack
Im very new so bear with me please.!!
I have a macro that pops up before I send a message to remind me to place it in a category (that I got online) as below.
'Categorize Sent Items
'Place in ThisOutlookSession
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If TypeOf Item Is Outlook.MailItem And Len(Item.Categories) = 0 Then
Set Item = Application.ActiveInspector.CurrentItem
Item.ShowCategoriesDialog
End If
End Sub
This works fine for me personal mailbox but doesn't when replying via the shared mailbox I only see my own personal categories and not that of the shared mailbox. Is it possible to select from the shared mailbox categories?
Thanks in advance
Jack