No, OE does not have addins. Again, you can pretty much only read the Inbox,
display the address book or send messages using Simple MAPI.
In case of Outlook 97/98/2000/2002/2003 you can create an Exchange Client
Extension (Extended MAPI only, C++/Delphi). In Outlook 2000/2002/2003, you
can create a COM addin (just about any language, VB. C++, Delphi, etc) and
track either Application.NewMail event or MAPIFolder.Items.ItemAdd event
(where MAPIFolder points to the Inbox). In case of Outlook 2003, you can
also use Application.NewMailEx event (passes the entry ids of new messages
to the event handler).
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"S. A. Hussain" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Thank Dmitry Streblechenko for your informative feedback. Please, tell
> me I am correct or wrong:
>
> "I need to capture email receiving event, parse this email and do
> appropriate modification. No GUI elements needed (only message box in
> particular case). Using C++ and MAPI, I will create an add-in; it
> works with Outlook Express (versions 5 and 6) and MS Outlook (version
> 2000, 2002, and 2003)"
>
> Correct or wrong?
>
> Azhar H.
>
> "Dmitry Streblechenko" <(E-Mail Removed)> wrote in message
news:<(E-Mail Removed)>...
> > The only common API between Outlook and OE is Simple MAPI - it is a set
of
> > 12 functions that will allow you to read messages in the Inbox (but not
any
> > other folder), display the address book etc. As the name suggests, it is
> > simple.
> > Extended MAPI on the other hand is the native Outlook API, whatever
Outlook
> > does, chances are you will be able to do that as well as long as it does
not
> > involve the Outlook UI. The downside is it can only be used from
C++/Delphi,
> > not from VB. Plus the learning curve is very steep.
> > Start with http://www.slipstick.com to see what is available.
> >
> > Dmitry Streblechenko (MVP)
> > http://www.dimastr.com/
> > OutlookSpy - Outlook, CDO
> > and MAPI Developer Tool
> >
> >