SAM | |
Determine the "identity" of your emails. Set with SAM the sender and the folder folder for sent items with the help of rules. |
Since Outlook XP you can create rules to call a VBA macro for incoming emails. The requirements are that the macro is declared as public, located in the module ThisOutlookSession or in a standard module (no class module), and that there's a variable for the MailItem to be passed.
Public Sub Sample(Item As Outlook.MailItem) 'do anythign here with the email End Sub
If the macro is for meeting request items, you just need to change the data type in the declaration:
Public Sub Sample(Item As Outlook.MeetingItem) '... End Sub
Category-Manager | |
With Category-Manager you can group your Outlook categories, share them with other users, filter a folder by category, automatically categorize new emails, and more. You can use the Addin even for IMAP. |