How to remove attachments from selected messages in Microsoft Outlook's Sent Items folder using VBA.
Use VBA to initiate a Send/Receive for a specific account
Is it possible to create a toolbar button that would execute Send/Receive on one specific mail account only? I have send/receive groups, and the pull-down button for all accounts from the toolbar, but that involves some menu-wading. You can use Outlook's SyncObjects property in a macro to trigger a send and receive for a specific Send/Receive Group or Account.
Run a script rule: Autoreply using a template
Use a Run a Script rule to autoreply to a message using a template. Include the original message or reply to a web form-generated message.
Assign a custom form to existing Outlook items
Use this VBA macro as an alternative to DocMessageClass for changing an Outlook item's message class.
Send email from another address using VBA
Use VBA to send an email using a Exchange server distribution list address you have Send as permissions for.
Copy Outlook Journal Entries to OneNote
How to use VBA to send Outlook Journal entries to OneNote. For Outlook 2010 and OneNote 2010 only. Use this to convert Journal entries to OneNote.
Forward meeting details to another address
How to use a VBA macro to send details of incoming meeting requests or cancellations to an email address.
New message to selected contacts using the BCC field
Use this macro to send an email message to the selected contacts. While you can use the Email button (Actions or Create > New Email Message to Contacts in older versions) to address the message to the selected contacts, the addresses are placed in the To field. You need to select all, copy and paste to move them to the BCC field.
Copy meeting details to an Outlook appointment
This macro copies a meeting request to an appointment. Why would you want to copy a meeting? In my case, to add it to the calendar that syncs with my blackberry. If I forward the meeting, my Blackberry address is exposed to the organizer. Meeting organizers might want a copy they can use to block off time before or after the meeting, or to use for meeting notes.
Create Outlook appointments for every nn workday
One (very justified) complaint about Outlook recurrence patterns is that there is not a pattern for Every xx weekday (Monday - Friday). You can create appointments for specific days of the week, but the every xx days pattern includes Saturday and Sunday. The solution: a macro that copies the appointment details to a new appointment.