A simple run a rule script marks Outlook messages read when the message body begins with certain words.
Use a macro to move Sent Items
Use a VBA macro in Outlook to move IMAP sent items to the Sent items folder on the IMAP server.
Use a macro to Reply with boilerplate text
Use an Outlook VBA macro to reply to messages with specific text in the subject and message body as well as CC and BCC it to other members of the team.
VBA: No attachments to CC'd recipients
Use this macro to send an attachment to email addresses in the To line and CC others with just the message and a list of attachments, and the To: recipients.
Create an Outlook Appointment from a Message
A VBA code sample that creates an appointment from an email message and adds it to a shared calendar or a calendar in another data file.
Change the email account on received email
After importing messages into Outlook, they may display the wrong email account. You can use a macro to change the account shown in the Email Account field.
Add Attachments and Set Email Fields During a Mail Merge
Use an ItemSend macro to set fields on email merges and include attachments.
Apply a View to a Folder using a Macro
How to use an Outlook macro to apply a frequently used view to a folder instead of using the Change View command.
Using Arrays in Outlook macros
Carol asked how to add a category to tasks she is creating with the macro at Create a Task from an Email using a Rule. Using that task macro as the example, it's easy to add a category if you want the same category for all tasks - just place this line before the objTask.Save
Dismiss reminders for past calendar events
Two macros to remove reminder from appointments. The first macro removes the reminders as the appointment is created in a specific calendar folder. The other macro removes reminders from older items.