Tagged Questions

Messaging Application Programming Interface (MAPI) is a messaging architecture and a Component Object Model based API for Microsoft Windows. MAPI allows client programs to become (e-mail) messaging-enabled, -aware, or -based by calling MAPI subsystem routines that interface with certain messaging servers.

learn more… | top users | synonyms

27
votes
8answers
44k views

Read MS Exchange email in C#

I need the ability to monitor for and read email from a particular mailbox on a MS Exchange Server (internal to my company). I also need to be able to read the sender's email address, subject, message ...
10
votes
9answers
13k views

Best way to access Exchange using PHP?

I'm writing a CMS application in PHP and one of the requirements is that it must be able to interface with the customer's Exchange server. I've written up this functionality a few times before and ...
8
votes
4answers
23k views

Add Library to Visual Studio 2008 C++ Project

I'm completely new to Visual Studio and I'm having some trouble getting a project started with Visual Studio 2008. I'm experimenting with MAPI, and I'm getting error messages like this when I go to ...
7
votes
1answer
2k views

Modifying Microsoft Outlook contacts from Python

I have written a few Python tools in the past to extract data from my Outlook contacts. Now, I am trying to modify my Outlook Contacts. I am finding that my changes are being noted by Outlook, but ...
5
votes
2answers
341 views

How to best future proof my application that needs to connect to Outlook?

I have a contact management application written in Delphi which has a “Sync with Outlook” feature that I developed 10 years ago. Now, I’m going back to add some features and fix some bugs. This sync ...
5
votes
2answers
233 views

Undelete a contact in outlook

I have an application written in Delphi that adds / updates contacts in outlook. The problem I'm having is that if the contact has been deleted in Outlook, the code still finds the contact and ...
4
votes
3answers
943 views

C# How to get the send of behalf email address in outlook add-in

I'm trying to get the sender email address from email that is send using another email address. The sender as shows in outlook is ditribution-lists@domain.com on behalf of User Name ...
4
votes
5answers
12k views

Launching email application (MAPI) from C# (with attachment)

In the past I have used MAPISendMail to launch Outlook (or whatever the desired MAPI email application was) from a C++ application with a file attachment. (Similar to say Microsoft Word's Send Email ...
4
votes
8answers
1k views

MAPI and managed code experiences?

Using MAPI functions from within managed code is officially unsupported. Apparently, MAPI uses its own memory management and it crashes and burns within managed code (see here and here) All I want ...
3
votes
2answers
174 views

How to send a mail using MAPI?

I want to send an e-mail using the mail client on the user's Windows computer. As far as I can tell from the net, MAPI is the way to go. However, after reading through the MSDN documentation, I find ...
3
votes
2answers
164 views

Outlook - 0×8004010F Error thrown on accessing mounted mailbox

0×8004010F Error is thrown when one user access the mailbox of another mounted user in outlook. What could be the possible resolution for this, other than disabling cached exchange mode? VSTO is used ...
3
votes
2answers
263 views

How do I ensure the MAPI client receives focus when I launch it?

I've got a function that launches a user's default e-mail program via MAPI. The mail program usually launches on top of my app, but sometimes it doesn't; sometimes my application remains on top of the ...
3
votes
2answers
645 views

Send an e-mail with rtf text in delphi

I would like to perform the following task: converting a TRichEdit content (an rtf text) into a not-plain-text e-mail message body. MAPI doesn't support rtf, but is there a way to do it maybe with ...
3
votes
1answer
100 views

Save message properties only locally (Outlook)

How can an Outlook add-in set a MAPI property (for example, the body content) on a message, but only have it saved in the local cache (and not sent back to the exchange server)? I've seen this done ...
3
votes
5answers
9k views

email using Access and VBA without MAPI

I would like to send email from Microsoft Access unattended using VBA. I understand that the built-in method “SendObject” uses MAPI meaning security prompts and something like Outlook configured. ...
3
votes
8answers
1k views

How to send mail on windows (other than MAPI)

When viewing the MSDN MAPI documentation page it says the API is now deprecated. If that's the case, what is the suggested API for sending mail these days? ...
3
votes
5answers
478 views

What is the best way to get started using MAPI?

I've been spending some time hacking away at MAPI for the purpose of creating tools for process automation on both server and client. Most of the resources I read online are either short on details ...
2
votes
0answers
97 views

Delphi: MAPI with Zimbra client failed

In a customer site they want to use Zimbra Mail client. We use Delphi6 to develop. Most of our customers can use the MAPI calls we provide from our application. (There are some exceptions because of ...
2
votes
1answer
116 views

How does one get the inbox folder and item count?

I finally managed to work out how to create item counts of the inbox, sent items, calendar & contacts but I'm having problems with the folder count. Let say I have 5 folders created in my ...
2
votes
2answers
786 views

How to open .eml files using Outlook MAPI in C#?

I have a C# application that reads .msg files and extracts the body and the attachments. But when I try to load a .eml file the application crashes. I am loading the files like this: MailItem ...
2
votes
3answers
877 views

Delphi: how to compose an email in Outlook without using MAPI?

In this question I just asked I told that I prepare Outlook messages by sending data from my app to Outlook with MAPI. But in this way I have one major hurdle: I cannot send formatted text for the ...
2
votes
2answers
841 views

Java MAPI library for Exchange 2010

Is there a Java library which allows to create a new mail with a file attached and brings the mail client (Outlook 2010) to front? The client and the Exchange 2010 server run on Windows 2008 64 Bit.
2
votes
3answers
525 views

How to create HTML email with embeded image and show it in the default mail client using .net (c#)?

If you look at the Snip tool in windows there is an option to send the snip as an embedded attachment in the default mail client (I guess as an html email). I need exactly that. At the moment I am ...
2
votes
1answer
616 views

Does Thunderbird always work as a MAPI Mail Client?

I have an application (which I wrote, in Delphi) with a function to format and send an email, using the underlying OS's MAPI client. I've tested it on four machines, and all works as expected in 3 out ...
2
votes
1answer
938 views

Detect if Exchange MAPI is installed

Since Exchange 2007, MAPI is no longer installed when Exchange is installed. On these systems this install is needed in addition to Exchange if you want to use MAPI. My software depends on Exchange ...
2
votes
2answers
468 views

How to get encoding from MAPI message with PR_BODY_A tag (windows mobile)?

I am developing a program, that handles incoming e-mail and sms through windows-mobile MAPI. The code basically looks like that: ulBodyProp = PR_BODY_A; hr = ...
2
votes
4answers
3k views

MAPI Windows 7 64 bit

I've got a legacy application that creates an email message with an attachment. The code uses the MAPI interface to create the message. This code has worked for quite some time. When the application ...
2
votes
1answer
209 views

How can I get a user's external e-mail address from a MapiRecipDesc?

I need to know how to get an e-mail address using MAPI. When I examine the contents of a MapiRecipDesc structure (returned, for instance, by a call to MAPIAddress()) I see that the lpszAddress field ...
2
votes
1answer
948 views

Get email folder from MailItem via MAPI interface

I'm creating a program to automatically generate reports from incoming email attachments and it is almost complete save for one area. The incoming emails are automatically filtered into folders which ...
2
votes
5answers
3k views

Retrieving Mails from Exchange server using MAPI

I'm doing background work for an Exchange Server Mail Archiver. I'm planning to do it using C#. Can anyone give some idea how to start off. Can I get a sample application which illustrates how MAPI ...
2
votes
1answer
4k views

Download location for MAPI33.dll?

From where can I download MAPI33.dll. I got the link http://www.mapi33.adexsolutions.com/ from a site but it seems this is not correct.
2
votes
2answers
573 views

Reading the Exchange server time via MAPI

I'd like to calculate the age of the messages in an Exchange mailbox to make sure they sit there for at least a minute before our program (C++, MAPI) processes them. This way the spam filter we use ...
2
votes
3answers
2k views

How to find out the distinguished name of the information store to feed to IExchangeManageStore::GetMailboxTable?

There is a Microsoft knowledge base article with sample code to open all mailboxes in a given information store. It works so far (requires a bit of copy & pasting on compilers newer than VC++ ...
2
votes
1answer
423 views

Finding all messages with a given PR_SEARCH_KEY

I need to query an Exchange server to find all messages having a certain value in PR_SEARCH_KEY. Do I have to open every mailbox and iterate through it or is there a faster solution? Edit: This is ...
1
vote
1answer
14 views

Outlook 2010 AddIn: Is there an event that fires *before* an item is added to a folder?

I'm writing an Outlook AddIn which is supposed to offer a new special folder which the user can drag mail items into, in order to have them processed by the AddIn. Now I'd like to be informed ...
1
vote
1answer
13 views

How to identify “my” custom folder in an Outlook AddIn

I'm trying to develop an AddIn - or rather, just a proof-of-concept for now, to see if what I have in mind is actually even possible - for Outlook (2010, to be exact), in .NET/C# and I'm facing the ...
1
vote
1answer
100 views

Issues with extended mapi wrapper for c#:

I have used mapi wrapper for c# (by Noel Dillabough - http://www.codeproject.com/KB/IP/CMapiEx.aspx). I found few issues: AddAttachment method execution operation takes a long time. After ShowForm ...
1
vote
2answers
114 views

Sending a MAPI email via Java ( or C# )

I have a java program that sends some emails currently using SMTP. I have a customer whose corporate network is locked down and only allows sending of emails via the MAPI1 and MAPI4 protocols. After ...
1
vote
0answers
163 views

Delphi unicode JCL MAPI Mozilla Thunderbird problem

I have a problem that is only happening on Delphi unicode when using JCL (I have made sure to use newest) MAPI code. I get General MAPI failure TmpEmail := TjclEmail.Create; TmpResolve := ...
1
vote
0answers
36 views

Exchange Server: remotely approve emails by moderator account (SOAP/MAPI)

I have a maillist in the Exchange server which is moderated by the moderator account. Currently it requires manuall approval of the incoming messages by the person (moderator). I am looking for the ...
1
vote
1answer
34 views

What is a non-read report?

In this article on MSDN the message classes for email are explained. It states that the prefix "REPORT" indicates an automated message and the subtype is defined in the suffix: DR: Delivery report ...
1
vote
1answer
174 views

VSTO Outlook 2007 Addin Startup throws System.Runtime.InteropServices.COMException (0x80020009): Cannot complete the operation. You are not connected

We are building an Outlook 2007 add-in using VSTO. We have code in the initialization logic of the addin which retrieves the MAPIOBJECT associated with the Application.Session. The code in question is ...
1
vote
1answer
67 views

What is the most direct way to get an Active Directory object for a given MAPI/Exchange user?

I'm trying to query Active Directory attributes of a MAPI recipient from inside an Outlook COM-addin. This is the first time I'm dealing with AD queries and the only way I figured out so far does not ...
1
vote
1answer
96 views

Like item in VBA?

I was wondering if there is something like a "Like" in VBA for Outlook 2003/2007 just like the LIKE in SQL... For Example you have multiple users in a Network and everyone has another Mailbox name. ...
1
vote
1answer
200 views

What reference do I need to use MAPI to send mail from VBA?

I'm trying to send a report to people through Access Database (SendObject VB code). It has been successul until we rollout Microsoft Outlook 2010 last November. Since the upgrade, we can't send the ...
1
vote
1answer
66 views

MAPI property truncated when accessed using QueryRows

Please bear with me, my MAPI knowledge is minimal and my C++ skills rudimentary ... I have a program that reads all possible calendar appointments from an Exchange server using MAPI. Things are ...
1
vote
1answer
110 views

MAPI: Most efficient way to iterate through all the folders and items in a mailbox

I'm trying to index items inside an exchange mailbox so: What is the most efficient way to iterate through all the folders and items in an exchange mailbox using MAPI and/or Redemption Data Objects ...
1
vote
1answer
534 views

Delphi MapiSendMail Crashes on Windows 7 64-bit

I have windows 7 64-bit and my delphi sendmail crashes when trying to send an email for the second time or sometimes even just waiting for the first send mail to complete. Same application works with ...
1
vote
1answer
290 views

Connect to mail server using MAPI

I would like to connect to my enterprise mail server ..But i can only usi MAPI protocol it seems . how can i establish a connection to my Enterprise mail server using Java MAPI API
1
vote
2answers
970 views

how to connect visual basic .net with microsoft exchange with free libraries posible?

Are there any free libraries for VB.net to use for connecting to a MS exchange server? I have found some paid ones but I'd rather not invest, so couln't find any free libraries.. I tried using java as ...

1 2 3 4