VBOffice

Display Categorizer for Outgoing Emails

Since Outlook 2007 you can't directly display the categorizer for outgoing e-mails. This sample demonstrates how to display the dialog by code, which works even for IMAP messages.

Last modified: 2008/10/13 | Accessed: 82.420  | #69
◀ Previous sample Next sample ▶
SAM SAM
Determine the "identity" of your emails. Set with SAM the sender and the folder folder for sent items with the help of rules.

This small sample displays the dialog for the active, open e-mail. Simply press ALT+F8 to run the macro.


tip  How to add macros to Outlook
Public Sub ShowCategoriesDialog()
  Dim Mail As Object
  Set Mail = Application.ActiveInspector.CurrentItem
  Mail.ShowCategoriesDialog
End Sub
ReplyAll ReplyAll
ReplyAll alerts you before unintentionally replying all, or if you are a confidential BCC recipient of the e-mail.
email  Send a message