You can either use an ItemSend macro to add Secure automatically, or use macro to selectively add Secure to the message.
ItemSend
VBA
9 lines
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
Dim strSecure As String
strSecure = "Secure...
Friday, 14 October 2016
Replace Display Names with Email Addresses
In a long thread discussing the problem of Outlook not showing the recipients email address atHow to show email address not just name in From and To fields a user mentioned the steps he uses to get around this problem:
I need the full email address displayed when I print a sent email so that...
Running Outlook Macros on a Schedule
Outlook doesn't have a timer function but you can use Appointment or Task Reminders to trigger macros. Set up an Application_Reminder macro that will do something when a reminder fires. To limit it to running when specific reminders fire, use an If statement to look for words in the subject or...