Click here to Skip to main content
Licence CPOL
First Posted 28 Jan 2008
Views 29,212
Bookmarked 21 times

Retrieve unread messages from Inbox

By | 30 Jan 2008 | Article
How to retrieve unread messages from Inbox by using Outlook Object Model in Visual Basic .NET

Introduction

The article is about reading, mails for th outlook, I faced this requirement when my client told me to automate the reading the UNREAD mails from his inbox without any intervention. So I just created the basic application which could read the inbox mails.

This article describes how to use Microsoft Outlook 10.0 Object Library to retrieve unread messages from the Outlook Inbox in Visual Basic .NET(2005)

Basic Recquirement:

1. Out Look 2003 Should be configured on your machine.

2. Visual Studio 2005 installed on your machine

Using the code:

Start the new session(Console) application of VB.net(2005) and paste the Code below in your module1.vb

Before you run the code don't forget to add the references to the Microsoft Outlook 10.0 Object Library. to add the reference browse through Project->Add References select COM tab

then select "Microsoft Outlook 10.0 Object Library" and press OK.

Run the Application. The Console Window will show the all the UNREAD mails from outlook(2003) the INBOX.

Imports System.Reflection
'// Reference to Microsoft Outlook 11.0 Object Library
Imports Microsoft.Office.Interop.Outlook

Module Module1

    Sub Main()
        ' Create Outlook application.
        Dim oApp As Microsoft.Office.Interop.Outlook.Application = New Microsoft.Office.Interop.Outlook.Application

        ' Get Mapi NameSpace.
        Dim oNS As Microsoft.Office.Interop.Outlook.NameSpace = oApp.GetNamespace("mapi")
        oNS.Logon("YourValidProfile", Missing.Value, False, True) ' TODO:

        ' Get Messages collection of Inbox.
        Dim oInbox As Microsoft.Office.Interop.Outlook.MAPIFolder = oNS.GetDefaultFolder(Microsoft.Office.Interop.Outlook.OlDefaultFolders.olFolderInbox)
        Dim oItems As Microsoft.Office.Interop.Outlook.Items = oInbox.Items
        Console.WriteLine("Total : " & oItems.Count)

        ' Get unread e-mail messages.
        oItems = oItems.Restrict("[Unread] = true")
        Console.WriteLine("Total Unread : " & oItems.Count)

        ' Loop each unread message.
        Dim oMsg As Microsoft.Office.Interop.Outlook.MailItem
        Dim i As Integer

        For i = 1 To oItems.Count
            oMsg = oItems.Item(i)

            Console.WriteLine(i)
            Console.WriteLine(oMsg.SenderName)
            Console.WriteLine(oMsg.Subject)
            Console.WriteLine(oMsg.ReceivedTime)
            Console.WriteLine(oMsg.Body)
            Console.WriteLine("---------------------------")
            Console.WriteLine("press any key to continue")
        Next

        ' Log off.
        oNS.Logoff()

        ' Clean up.
        oApp = Nothing
        oNS = Nothing
        oItems = Nothing
        oMsg = Nothing
    End Sub

End Module
        
        

History

  • 29/01/08 - Basic Version
  • Hope this code will help you people. Happy coding.

    License

    This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

    About the Author

    Kiran K

    Web Developer

    India India

    Member



    Sign Up to vote   Poor Excellent
    Add a reason or comment to your vote: x
    Votes of 3 or less require a comment

    Comments and Discussions

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    GeneralMy vote of 5 PinmemberESSESSESS21:42 30 Nov '11  
    GeneralWorks nice with Outlook 2007 Microsoft Outlook 12.0 Object Library PinmemberHaraldHeide23:51 29 Oct '09  
    GeneralHelp.. Pinmemberhits20094:23 21 Mar '09  
    QuestionWhat if it is system administrator mail PinmemberAcidAndroid8:56 4 Mar '09  
    AnswerRe: What if it is system administrator mail PinmemberRandy_Miller11:04 19 Sep '10  
    GeneralLooking at other folders other then the Inbox PinmemberDJ Matthews8:44 25 Aug '08  
    QuestionHow to move, delete and flag messages as read? PinmemberATRider19:04 14 Apr '08  
    AnswerRe: How to move, delete and flag messages as read? PinmemberLuke Singh9:13 2 Jul '08  
    GeneralCool!! Works immediately and is simple! PinmemberATRider10:04 14 Apr '08  
    QuestionNice but ?? PinmemberKamal Singh D. Kharayat23:50 28 Jan '08  

    General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

    Permalink | Advertise | Privacy | Mobile
    Web04 | 2.5.120517.1 | Last Updated 30 Jan 2008
    Article Copyright 2008 by Kiran K
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid