0
votes
0answers
19 views

How to handle multi-language MAPI errors (MAPI_E_EXTENDED_ERROR)

The problem is simple - how to best handle the MAPI_E_EXTENDED_ERROR, when the only thing that separates the specific error from other similar errors is a string, and that string is localized - ...
1
vote
1answer
169 views

DocumentItem (IMessage) loses attachment after opening

In our MAPI message store provider, we present both email and non-outlook items (office documents etc). Technically, we provide these documents as an IMessage object with a single attachment and a ...
0
votes
1answer
111 views

outlook 2007 - how to send personalized mails using mail template and data form DBMS

I'd like to send an email by using vsto outlook addin. There will be multiple recipients and data about recipients from DBMS. In mail template there will be a keywords should be replaced with ...
0
votes
1answer
27 views

Prevent editing appointments and tasks in outlook

Is it possible to prevent a user from editing appointments and tasks in Outlook. The tasks and appointments are synchronized using an addin we are developing. We want to make a first release, but we ...
1
vote
2answers
531 views

How to set sender name in message sent using outlook 2010/13 ? <MAPI>

I've been fetching value of the user name from user's profile "PR_DISPLAY_NAME" and set the same value as sender in "PR_SENDER_NAME_X" property value. But it seems outlook 2010\13 always sets the user ...
2
votes
1answer
140 views

Outlook Addin doesn't render HTML forms using VSTO but using C++ API does

I am rewriting C++ Outlook Addin application to it full .NET representation using VSTO (Outlook 2007/2010). One of the features to rewrite is html forms rendering. User can select checkbox, provide ...
0
votes
1answer
151 views

What are the MAPI properties that hold message Body

AFAIK, message body is stored in either of the following properties - PR_RTF_COMPRESSED or PR_BODY or PR_BODY_HTML but on my system when I see through the outlook spy - I don't find any of these ...
2
votes
2answers
160 views

How to pass a COM object as an IntPtr to a P/Invoke method?

Currently developing an Outlook add-in with Add-in Express, I have to revert to some pure MAPI functions for reading MAPI properties. Having this P/Invoke wrapper to the HrGetOneProp function: ...
0
votes
1answer
100 views

MAPI APIs to save appointment do not save changes if process killed

I am trying to develop a COM plugin with vc++ for outlook which receives data from a non exchange server and saves them to Outlook PST files. I am using Outlook object model and MAPI APIs to save an ...
0
votes
1answer
136 views

create custom fields for task using redemption

I have to create a task with custom fields in it(p.1,p.2..like). I have to create a form which contains properties like textbox,buttons.. How to create such a tasks using Redemption dll in C# ...
0
votes
1answer
289 views

IMAPIProp::CopyTo returns MAPI_E_NO_ACCESS if IMessage is opened from .msg file

I use IMAPIProp::CopyTo in an add-in for Outlook 2010 to save the currently displayed IMessage into a new IMessage in a .msg file on disk. Everything works fine for messages that reside in the user's ...
1
vote
1answer
568 views

Read “active” mail message on Outlook context-menu action?

Hi i am trying to read email content on click of a custom button in outlook . i.e : right click on a mail and on selected mail click custom Button GoToApp and it should read all content of mail ...
1
vote
0answers
381 views

Members property of Outlook.AddressEntry throws exception

I'm writing an Outlook 2007 Addin with VS2010 in C# to provide some addiotional functionality along with our mailserver. For it I need to enumerate the distribution lists in the GAL to which the ...
0
votes
1answer
239 views

Outlook : How to get reference of (EntryID, optional & required attendee) newly added item in Appointment.Write event handler

I want to capture the information of new created appointment item, For that I hook the event with NewInstpector window & again hook the Write event. I am also using standard outlook item ...
1
vote
3answers
2k views

Get named MAPI Property from MailItem in C#

I'm developing an Outlook 2010 custom plugin in C#. This is my first time using C# (I'm a java guy normally). There is a named (custom) MAPI property on a message that I would like to access and am ...
0
votes
1answer
73 views

Saving program shared data in Exchange Public Folder

I have a question reffering to Public Folders on Exchange Server. I have an application (Outlook Com Addin) that need to share settings amonge every Exchange User that have access to Public Folders. ...
1
vote
1answer
4k views

nicely reading outlook mailitem properties

I am writing a plugin for outlook 2007 and i would like to read a property of a MailItem. In particular i'd like to know all the content-types of my attachments. Now the way i do this now is ...
1
vote
2answers
557 views

Controlling the mail client from delphi

I have an issue here where we need to control outlook from Embarcadero Delphi 2010. we used today some thirdparty components for opening the mail sending window, this worked some timeago. but now it ...
6
votes
3answers
1k 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 ...
1
vote
2answers
1k views

Is there a list of IDs for the Outlook MAPI namespace?

I'm working on an Outlook add-in and I'm looking for a complete list that relates that MAPI properties to there names that is a little less vague than this. There is plenty of documentation on how to ...
1
vote
2answers
3k views

Creating outlook item with custom Message Class IPM.CustomClass

I am using VSTO 3.0 for outlook2003 addin. Is it possible to create an item with custom Message Class IPM.CustomClass. The following article mentions about form configuration files to create custom ...