Click here to Skip to main content
15,875,581 members
Articles / Programming Languages / Visual Basic
Article

Using MAPI properties and events in .NET with the MAPI Store Accessor

Rate me:
Please Sign up or sign in to vote.
4.83/5 (3 votes)
24 Jan 2008CPOL3 min read 100.6K   1.4K   19   37
A simple WinForms application that shows MAPI folders and items in your mail profile.

A running application

A PR_BODY value of the selected item

Introduction

This article covers the basics of writing a simple application using Extended MAPI. The main purpose of this article is to show developers how they can enhance their applications with Extended MAPI. To have this application working, you need to download and install a free component, the MAPI Store Accessor for .NET.

The MAPI Store Accessor

The MAPI Store Accessor is a .NET component which allows you to subscribe to such events as OnNewMail, OnObjectChanged, OnObjectCopied, etc. It also lets you access MAPI stores, folders, items, and attachments. You will see that the use of the MAPI Store Accessor effectively hides the complexities of MAPI.

Currently, the MAPI Store Accessor for .NET supports:

  • Visual Studio 2005 ( Standard and Professional )
  • Visual Studio 2008 ( Standard and Professional )

The fundamental classes in the AddinExpress.MAPI library are:

  • Store - represents a store in a profile
  • Folder - represents a folder in a store
  • MapiItem - represents an item in a folder
  • HiddenItem - represents a hidden item in a folder
  • Attachment - represents an attachment

There are also corresponding collections such as Stores, Folders etc. To start using these classes, you should get the collection of stores from the component when it is connected to the MAPI subsystem.

First steps

To start working with the MAPI Store Accessor, find it in the Toolbox window and drop it onto the Windows Form, or declare the component in your code manually.

There are two important things you should do:

  • Call Initialize
  • Call LogOff

They are like start and stop commands. When calling Initialize with the boolean parameter, the component connects to the default profile. Your application creates or connects to the existing MAPI session depending on the value which you pass to the method. If you want to create a new session, pass True. If you need to connect to the existing session, pass False. When you pass False, make sure that the session exists. Another overload of the Initialize method accepts a profile name and password.

Coding

Add Initialize and LogOff where appropriate. I do it in the Load and FormClosing event handlers of the form, respectively.

VB.NET

VB
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _
        Handles MyBase.Load
    ' initialize component
    AdxmapiStoreAccessor1.Initialize(True)
    ' additional tasks
    Dim folders As Folders = _
        AdxmapiStoreAccessor1.MsgStores(0).RootFolder.Folders(1).Folders
    Dim folder As Folder
    For Each folder In folders
       Dim folderName As Object = folder.GetProperty(ADXMAPIPropertyTag._PR_DISPLAY_NAME)
       If folderName IsNot Nothing Then
                 ipmTreeView.Nodes.Add(folderName.ToString())
       End If
    Next
End Sub

Private Sub Form1_FormClosing(ByVal sender As System.Object, _
       ByVal e As System.Windows.Forms.FormClosingEventArgs) _
       Handles MyBase.FormClosing
    AdxmapiStoreAccessor1.LogOff()
End Sub

C#

C#
private void Form1_Load(object sender, EventArgs e)
{
    // initialize component
    adxmapiStoreAccessor1.Initialize(true);
    
    // additional tasks
    foreach (Folder folder in 
       adxmapiStoreAccessor1.MsgStores[0].RootFolder.Folders[1].Folders)
    {
        object folderName = folder.GetProperty(ADXMAPIPropertyTag._PR_DISPLAY_NAME);
        if (folderName != null)
        {
            ipmTreeView.Nodes.Add(folderName.ToString());
        }
    }
}

private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    adxmapiStoreAccessor1.LogOff();
}

Now, we are ready to add business logic to our application. We need a TreeView and a ListBox. Drop them onto the form. Add the appropriate settings of your choice. Finally, add the following event handlers:

  • The AfterSelect event handler for the TreeView control:
  • VB.NET

    VB
    Private Sub ipmTreeView_AfterSelect(ByVal sender As System.Object, _
        ByVal e As System.Windows.Forms.TreeViewEventArgs) _
        Handles ipmTreeView.AfterSelect
        listBoxItems.Items.Clear()
        ' retrieve the first message store in a profile we are logged in
        current = _
           AdxmapiStoreAccessor1.MsgStores(0).RootFolder.Folders(1).Folders(e.Node.Index)
        Dim item As MapiItem
        For Each item In current.MapiItems
           ' retrieve the PR_BODY property of the mapi item
           Dim subject As Object = item.GetProperty(ADXMAPIPropertyTag._PR_SUBJECT)
           If subject IsNot Nothing Then
                 listBoxItems.Items.Add(subject.ToString())
           End If
        Next
    End Sub

    C#

    C#
    private void ipmTreeView_AfterSelect(object sender, TreeViewEventArgs e)
    {
        listBoxItems.Items.Clear();    
        // retrieve the first message store in a profile we are logged in
        current = ((Folders)adxmapiStoreAccessor1.MsgStores[0].
                      RootFolder.Folders[1].Folders).Add(e.Node.Text);    
        foreach (MapiItem item in current.MapiItems)
        {
            // retrieve the PR_BODY property of the mapi item
            object subject = item.GetProperty(ADXMAPIPropertyTag._PR_SUBJECT);
            if (subject != null)
            {
                listBoxItems.Items.Add(subject.ToString());
            }
        }
    }
  • The DoubleClick event handler for the ListBox control:
  • VB.NET

    VB
    Private Sub listBoxItems_DoubleClick(ByVal sender As System.Object, _
              ByVal e As System.EventArgs) Handles listBoxItems.DoubleClick
         If listBoxItems.SelectedIndex >= 0 Then
             Dim item As MapiItem = current.MapiItems(listBoxItems.SelectedIndex)
             Dim body As Object = item.GetProperty(ADXMAPIPropertyTag._PR_BODY)
             If body IsNot Nothing Then
                MsgBox(body.ToString(), "The body of the mail item", _
                   MessageBoxButtons.OK, MessageBoxIcon.Information)
             End If
         End If
    End Sub

    C#

    C#
    private void listBoxItems_DoubleClick(object sender, EventArgs e)
    {
        if (listBoxItems.SelectedIndex >= 0)
        {
            MapiItem item = current.MapiItems[listBoxItems.SelectedIndex];
            object body = item.GetProperty(ADXMAPIPropertyTag._PR_BODY);
            if (body != null)
            {
                System.Windows.Forms.MessageBox.Show(body.ToString(), 
                  "The body of the mail item", MessageBoxButtons.OK, 
                  MessageBoxIcon.Information);
            }
        }
    }

Conclusion

That's it. Our application is ready to go. The TreeView control on the left shows the folder tree of the first message store of the profile we are logged in to. You can see the same tree in your default mail agent (it may be, for example, Microsoft Outlook). The ListBox control on the right shows all the items contained in the selected folder in the TreeView control. By clicking on an item in the right panel, you get the body (PR_BODY) of the MAPI item.

License

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


Written By
Team Leader Add-in Express
Belarus Belarus
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMAPI subsystem didn't initialize correctly Pin
txdmh719-Aug-10 4:47
txdmh719-Aug-10 4:47 
GeneralRe: MAPI subsystem didn't initialize correctly Pin
Eugene I.17-Sep-10 0:01
Eugene I.17-Sep-10 0:01 
QuestionHow to get an attachment from mail Pin
theRealScarecrow18-Jul-10 4:18
theRealScarecrow18-Jul-10 4:18 
AnswerRe: How to get an attachment from mail Pin
Eugene I.19-Jul-10 5:50
Eugene I.19-Jul-10 5:50 
GeneralRe: How to get an attachment from mail Pin
theRealScarecrow19-Jul-10 8:25
theRealScarecrow19-Jul-10 8:25 
AnswerRe: How to get an attachment from mail Pin
Eugene I.20-Jul-10 1:09
Eugene I.20-Jul-10 1:09 
QuestionSystem.BadImageFormatException was unhandled Pin
Roger C Moore14-Jul-10 6:36
Roger C Moore14-Jul-10 6:36 
GeneralRe: System.BadImageFormatException was unhandled Pin
Roger C Moore14-Jul-10 7:09
Roger C Moore14-Jul-10 7:09 
AnswerRe: System.BadImageFormatException was unhandled Pin
Eugene I.14-Jul-10 23:29
Eugene I.14-Jul-10 23:29 
Generali have a problem when i run the app. Pin
solbyte6-Jul-10 0:44
solbyte6-Jul-10 0:44 
GeneralRe: i have a problem when i run the app. Pin
Eugene I.14-Jul-10 23:31
Eugene I.14-Jul-10 23:31 
General64-bit Outlook Pin
deanit11-Jan-10 4:04
deanit11-Jan-10 4:04 
GeneralRe: 64-bit Outlook Pin
Andrei Smolin12-Jan-10 23:19
Andrei Smolin12-Jan-10 23:19 
QuestionHow to create outlook calender folder item using vb.net code? Pin
Member 434622729-Oct-09 18:31
Member 434622729-Oct-09 18:31 
AnswerRe: How to create outlook calender folder item using vb.net code? Pin
Andrei Smolin6-Nov-09 0:35
Andrei Smolin6-Nov-09 0:35 
QuestionSome Questions Pin
mailtorakib23-Sep-09 15:02
mailtorakib23-Sep-09 15:02 
AnswerRe: Some Questions Pin
Andrei Smolin24-Sep-09 0:55
Andrei Smolin24-Sep-09 0:55 
QuestionIs that possible to send email using MAPI Store Accessor Pin
meramkumar10-Jun-09 18:51
meramkumar10-Jun-09 18:51 
AnswerRe: Is that possible to send email using MAPI Store Accessor Pin
Andrei Smolin25-Jun-09 5:40
Andrei Smolin25-Jun-09 5:40 
GeneralMAPI Pin
Archimedes245-Feb-09 1:43
professionalArchimedes245-Feb-09 1:43 
GeneralRe: MAPI Pin
Andrei Smolin5-Feb-09 8:16
Andrei Smolin5-Feb-09 8:16 
GeneralRe: MAPI Pin
janjerell31-Mar-09 14:53
janjerell31-Mar-09 14:53 
GeneralRe: MAPI Pin
Andrei Smolin1-Apr-09 0:29
Andrei Smolin1-Apr-09 0:29 
QuestionEmail contact Bug ? Pin
ouialors16-Dec-08 5:57
ouialors16-Dec-08 5:57 
AnswerRe: Email contact Bug ? Pin
ouialors16-Dec-08 6:16
ouialors16-Dec-08 6:16 

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

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