10 Useful Outlook 2007 Plug-ins and Tricks

Posted by: Shoban Kumar , on 6/24/2009, in Category Outlook 2007
Views: 158338
Abstract: In this article, we will see 10 useful Outlook Plug-ins and Tricks that can be used with Outlook 2007.
10 Useful Outlook 2007 Plug-ins and Tricks
 
In this article, we will see 10 useful Outlook Plug-ins and Tricks that can be used with Outlook 2007. Some of them should even work in previous versions of Outlook.

Tip 1: Defer Email in Outlook:  Sometimes we send an email and then realize that we missed an important part of the message. I always wished we had Ctrl + Z (Undo) in Outlook. But here is an easy trick to delay email messages even after you press the “Send” button. We achieve this by creating rules in Outlook. Here is how to do it.



a.    Open Outlook > Click Tools> Rules and Alerts.
b.    In the popup window click ‘New Rule’. In the resulting window select ‘Check message after sending’ > click Next
 
OutlookRule1
 
c.    Click ‘Nextin the next window and Press ‘Yes’in the alert window.
d.    Select the last option ‘defer delivery by a number of minutes’ and in the ‘step 2’ window enter the number of minutes you wish to delay the email.
 
OutlookRule2
 
e.    You can click ‘Finish’ to create the rule.
    Note: Sometimes, there may be emails which need to be sent out immediately. For these specific cases, you can add an exception by clicking ‘Next’ and setting the exception in the next window.
f.     As you can see in the screenshot given below, I have selected outlook to send the email immediately if there is a particular word in the email - In our case for demonstration purposes, it’s the letter ‘$’.
 
    OutlookRule3
 
Tip 2: Detect Missed Attachment in Outlook - How many times have you missed an attachment in your email? Gmail has a wonderful labs feature which will alert you if you miss attachments in your email. Forgotten Attachment Detector is an Outlook plug-in from office labs which does the same job. Once you start using this plug-in, you will never miss attachments in your important emails here after.
Tip 3: Display Sender’s Time zone in Outlook: I work for a company which has an office in India and UK and many times during email conversations, it is confusing to see what time was the email sent. This is where Sender’s Time Zone plug-in came to my rescue. This plug-in shows the exact time in which the email was sent.
 
Time Zone
 
Tip 4: Email with subject: Subject line is a very important part of an email. Most people prioritize the emails based on the subject line. Unfortunately, most people don’t add a proper subject line to their email. It becomes even worse when they miss the subject line. Here is an outlook macro which will alert you when you try to send an email without a subject line. Here are the steps to implement the macro:
a. Open outlook and press Alt + F11. This will open the Visual Basic Editor
b. Add the following code
 
Private Sub Application_ItemSend(ByVal Item As Object, ByVal Cancel As Boolean)
        Dim strSubject As String
        strSubject = Item.Subject
        If Len(strSubject) = 0 Then
            Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?"
            If MsgBox(Prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, " Subject") = vbNo Then
                Cancel = True
            End If
        End If
    End Sub
 
c. Save and Close the editor. Next time when you send an email without a subject line, the following alert message will be shown.
 
Subject
 
Tip 5: Recover Deleted emails in Outlook: Do you know that you can recover an email even if it is deleted? If you have accidently deleted any emails, then click “Deleted Items” to view deleted email. Now click Tools > Recover Deleted items. A new window will popup which will let you recover all your deleted emails.
If you don’t see the “Recover deleted items” in your menu then here’s how to add it to the registry setting:
a. Start Registry Editor using Run -> regedit.
b. Navigate to HKEY_LOCAL_MACHINE -> Software->Microsoft->exchange->client.
c. Create a new DWord “DumpsterAlwaysOn”. Note: This is case sensitive.
d. Right click on the DumpsterAlwaysOn and modify the Value data to 1 and click on OK. Note: 1 – Turn On, 0 – Turn Off
e. Now open Outlook and click on Tools.
d. Choose ‘Recovery Deleted Items’.
Tip 6: Display a Second Time Zone in Outlook Calendar: Here is how you can display a second time zone in your outlook calendar.
a. Click Tools > Options > Calendar Options, and then click Time Zone.
b. Enter a label for your current time zone (for example, DE for Germany) >  select the Show an additional time zone check box . and then select the appropriate time zone from the list displayed.
Tip 7: Sync Facebook, Gmail Contacts with Outlook:OutSync is a free Windows application that syncs photos of your Facebook friends with matching contacts in Microsoft Outlook Similarly you can sync your Gmail contacts with outlook using Go Contact Sync.
Tip 8: Manage Tasks in Outlook using DeskTask: I use Outlook extensively to manage my tasks and DeskTask is one of the most useful plug-ins. DeskTask is a free windows application which displays tasks and calendar on your desktop.
Tip 9: Run Outlook in Multiple Instances: By default Outlook does not connect to two different exchange servers at the same time. You can connect to different servers using different profiles, but it is not possible to run different profiles at the same time. It’s a pain to restart Outlook to check different email accounts in different servers. This is where Extra Outlook comes to rescue. This free windows application will enable outlook to run in multiple instances. Here is a blog post about how to use Extra Outlook.
Tip 10: Mini calendar in Outlook Out of office reply: Wouldn’t it be cool if you add a mini calendar, showing your holiday plan, in your out of office replies? Here is the detailed explanation from outlook team blog about how you can do this.
 I hope you liked these tips and will find them useful!
If you liked the article,  Subscribe to the RSS Feed or Subscribe Via Email

Shoban Kumar, is a 23 year old techie from Trivandrum mainly working on ASP, ASP.NET, VB, VB.NET and PHP. You can also find him blogging at www.crankup.net and www.codegeeks.net. Follow him on twitter @shobankr 

This article has been editorially reviewed by Suprotim Agarwal.

Absolutely Awesome Book on C# and .NET

C# and .NET have been around for a very long time, but their constant growth means there’s always more to learn.

We at DotNetCurry are very excited to announce The Absolutely Awesome Book on C# and .NET. This is a 500 pages concise technical eBook available in PDF, ePub (iPad), and Mobi (Kindle).

Organized around concepts, this Book aims to provide a concise, yet solid foundation in C# and .NET, covering C# 6.0, C# 7.0 and .NET Core, with chapters on the latest .NET Core 3.0, .NET Standard and C# 8.0 (final release) too. Use these concepts to deepen your existing knowledge of C# and .NET, to have a solid grasp of the latest in C# and .NET OR to crack your next .NET Interview.

Click here to Explore the Table of Contents or Download Sample Chapters!

What Others Are Reading!
Was this article worth reading? Share it with fellow developers too. Thanks!
Share on LinkedIn
Share on Google+

Author
ShobanKumar is an ex-Microsoft MVP in SharePoint who currently works as a SharePoint Consultant. You can read more about his projects at http://shobankumar.com. You can also follow him on twitter @shobankr


Page copy protected against web site content infringement 	by Copyscape




Feedback - Leave us some adulation, criticism and everything in between!
Comment posted by jimmy john on Wednesday, June 24, 2009 8:03 AM
good work
Comment posted by streetpoc on Wednesday, June 24, 2009 8:32 AM
Good tips. I liked 6 and 10.
Comment posted by Raymond Roblin Donston on Wednesday, June 24, 2009 9:31 PM
I knew a couple of them. I found Tip # 4 to be very useful. Keep up the good work !
Comment posted by resourcesmix.info on Thursday, August 27, 2009 9:50 PM
great trick, thanks for sharing!
Comment posted by Thomas Joy on Wednesday, September 23, 2009 11:55 PM
Awsome Work!!
Comment posted by RichMan on Sunday, June 20, 2010 1:32 PM
Nice tricks guys, but in my point of view, the best "trick" is to install the outlook plug-in lookeen. After the installation, Outlook will impress you favourably :)
http://www.lookeen.net
Comment posted by erolmacc on Monday, September 27, 2010 12:40 PM
TIP 2 has a VBA error

"Procedure declaration does not match description of event or procedure having the same name"
Comment posted by kazik kulka on Thursday, October 14, 2010 9:23 AM
I've recently browsed the Web for some free Outlook add-ins and found this article:

http://www.codetwo.com/blog/free-outlook-add-ins-from-codetwo/2317

they have some really good stuff there. I especially like outlook export and attach unblocker. Find them really useful...

-k.k.

Comment posted by karen on Thursday, December 2, 2010 7:33 PM
I have outlook 2007 and am discouraged.  you used to be able to create a rule directly from the email name listed on an incoming email...
choose additonal actions
then it would offer the opportunity to schedule a meeting, build a rule etc...
That seems to be gone with 2007.... is there a way to get it back??
Comment posted by Charles on Wednesday, December 8, 2010 8:32 AM
This is a great set of tips, thank-you very much!!!
Comment posted by Aashish Vaghela on Friday, March 2, 2012 12:23 AM
Tip # 4, did not work on my OL2k7 on XP-SP2. Anything that I'm missing here ... ?