
![]() |
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
![]() |
OLKeeper |
OLKeeper reliably prevents users from closing their Outlook window and thus possibly missing reminders or e-mails. |