Outlook Hack : Empty subject warning

How many times you have forgot to write subject of emails you sent through Outlook?? The biggest blunder is Outlook doesn’t show any warning ! Here is a hack/macro for it.

Steps:

  1. Open your outlook
  2. Press Alt+F11. This open the Visual Basic editor
  3. On the Left Pane, one can see “Microsoft Outlook Objects”, expand this. Now one can see the “ThisOutLookSession”.
  4. Click on “ThisOutLookSession”.
  5. Copy and Paste the following code in the right pane.(Code Pane)
  6. Private Sub Application_ItemSend(ByVal Item As Object, 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, “Check for Subject”) = vbNo Then
    Cancel = True
    End If
    End If
    End Sub
  7. Now save and close the VB Code editor. From now on , this macro will make sure you do not make the mistake of sending a mail without subject.

~ Ankit

Free Web Hosting : Without Ads

Hey, I found some free hosting providers with unlimited bandwidth, subdomain, 200MB space, no limitation, full FTP Access with FXP Support, latest stable PHP (4.4.1) with GD library and Zend Optimizer, MySQL Support (Latest Stable Version-4.0.26), SSI Support (Server Side Includes) and all of these without showing ads/advertizements.

Check out : 275MB.com , 95MB.com and ORG FREE

~ Ankit