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 ...
0
votes
0answers
19 views
Creating Custom Simple Mapi DLL, fails when executing
i need to create small dll to intercept simple mapi calls and send files via:
file->Send to as attachment (in excel, word, acrobat reader...)
or via explorer->rightclickmenu->Send to->Mail recipient
...
0
votes
1answer
23 views
Forward RDOMail from original mail address by using Outlook Redemption
I'm currently developing an application that handles mail for mailboxes automatically. We use the tool Outlook Redemption and connect with one service account to multiple Exchange mailboxes.
Case
...
0
votes
0answers
59 views
how to access my yahoo or gmail account in outlook (c#)?
I have 3 data files:
Outlook data file (is empty)
Gmail data file (from my gmail pop3)
Yahoo data file (from my yahoo imap)
I can access the Outlook data file inbox (which is always empty, I don't ...
0
votes
0answers
25 views
Binary files in Gridfs-Mongo DB to be stored in local drive in python 2.7
I have stored some attachments into GridFS mongo using the Put command in Gridfs.
x12 = 'c:\test\' + str10
attachment.SaveAsFile(x12)
with open(x12, 'rb') as content_file:
content = ...
3
votes
0answers
49 views
How to drop files onto .MAPIMail
Given some files (or shell file objects) how do i invoke the .MAPIMail registered shell extension handler with them?
The Question
i have some files on the computer:
...
0
votes
1answer
32 views
Can I read/render an MSG-file in C++ using Outlook Redemption?
I'm wrinting an application which allows users to drop dragged files. If the user would drag an email from MS Outlook onto this application, my application would automatically 'disect" the msg file, ...
3
votes
1answer
32 views
Can MAPI be trusted with immutable strings?
I'd like my program to compose an outgoing e-mail in the user's favorite e-mail client by passing a MapiMessage to MAPISendMail. Elements of the e-mail, such as the subject, are available to my ...
2
votes
2answers
49 views
How can I get the outlook contact's avatar image?
I am trying to get the contact's avatar image.
using Microsoft.Office.Interop.Outlook;
public sealed class OutlookAvatarFetcher
{
private static void FetchAvatars()
{
var outlook = ...
0
votes
1answer
52 views
MAPI Control Multiple attachments
I am trying to send an email with multiple attachments using the VB6 MAPIMessages control.
1) I am able to use this control to send a single attachment but it displays an error saying "Attachment not ...
0
votes
3answers
61 views
how to read mails from Exchange using mapi
I'm beginner to C#. Now I'm trying to develop a mail reading application that uses the MS Exchange native protocol (mapi) in C#.
I have tried using EAgetmail.dll which is available over the internet. ...
1
vote
1answer
60 views
Outlook 2010 VSTO Change Attachment Size on Filename
Hello I am writing a Outlook 2010 addin and I basically I need to manipulate the size of the attachment being show in the OL Inspector, where the attachments are listed, or just not show the size.
...
0
votes
0answers
29 views
.Net app to support all outlook versions for sending mail
I want to create a command line utility in .Net that takes following parameters and send the mail in hidden mode.
To,BCC,CC and Attachments
The mail should be displayed in outlook client "Sent" ...
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 - ...
0
votes
0answers
19 views
Catch MAPI output
I have program which generates emails by MAPI. These emails opens in the default local mail client as usual.
I also have a small mail client written i python using the smtplib to send emails. What I ...
1
vote
1answer
153 views
Sending messages with HTML contents using the MAPI control in VB6
How can I send a mail using MAPI with an HTML body? I need to create table in a message body.
I'm using vb6 and the MAPI control. Any ideas?
Function MailSend(sSendTo As String, sSubject As String, ...
0
votes
1answer
98 views
List all occurences of outlook recurring appointments
MS Outlook provides MAPI to access outlook calendar items. With calendar items it can find all recurring and non-recurring appointments of outlook. In case of recurring appointments all occurences of ...
0
votes
2answers
129 views
How to use Simple MAPI without mail client?
Has a Windows Server 2008 R2 without mail client and not option to install any mail client to this server.
I write a service what is use Simple MAPI to get email from exchange server.
Already ...
2
votes
2answers
59 views
Send mail with mapi in jython
I am trying to use pywin in a jython application for sending emails w/ attachments with outlook.
Pywin needs a win32 enviroment, but since we are in java and the function sys.platform returns ...
1
vote
1answer
92 views
pywin32 and extended mapi: send email with attachments
i am using the following code to send email with Simple MAPI Interface
import win32com.client
olMailItem = 0x0
obj = win32com.client.Dispatch("Outlook.Application")
newMail = ...
0
votes
1answer
151 views
How to disable Outlook security popup using Outlook Object Model C++
We are using Outlook Object Model as follows to read all Outlook contacts:
Outlook Object Model
Microsoft Office 2010 64 bit
Windows 7 Ultimate
#import "mso.dll" named_guids
#import ...
0
votes
1answer
57 views
Communication not working when run as service
I have created an application that accesses the Exchange Server through MAPI. A Tray app is used to start, stop and configure the application. I have put all of the communication and processing logic ...
0
votes
0answers
103 views
Extracting all messages from outlook inbox
I'd like to extract all messages from my inbox in outlook using a program that I made.
I debugged the application and it turns out that I'm only getting 701 messages using this:
folder.Items.Count
...
0
votes
1answer
62 views
Why does exporting a Crystal Report cause my MAPI address book to throw an excpetion?
I'm experiencing a strange problem where exporting a crystal report causes problems for displaying a MAPI address book. These are two completely unrelated tasks and I don't understand how one affects ...
0
votes
2answers
277 views
Accessing Global Address Lists for multiple Outlook accounts
Trying my luck here after hour of searching.
Let's say you have Outlook 2010 with two active accounts: john.doe@company.com, admin.test@company.com.
You need to pull Global Address List for ...
0
votes
1answer
76 views
Outlook Folder events randomly stop working on Shared Mailbox
I'm working on a WPF application that monitors numerous folders in an Outlook Shared Mailbox. I have wired up ItemAdd and ItemRemove event handlers to a Folder.Items object.
Everything works great ...
0
votes
1answer
224 views
Does Exchange Online support MAPI Client applications
I have been searching for a clear answer to a question I have about Office 365/Exchange Online. We use a MAPI application that uses a MAPI profile to send messages on behalf of the user. The Systems ...
0
votes
0answers
143 views
Getting the MAPI StoreID property from Exchange Web Services
I'm currently working an on implementing Exchange Web Services for an application which currently references MAPI EntryID and StoreID properties from Outlook.
While I am able to convert the EWS ID to ...
0
votes
1answer
362 views
Does CDO / MAPI still working with Exchange 2013?
I have an old VB application that send mail this way using a Mapi.Session
Set objSession = New mapi.Session
strProfileInfo = strServeurExchange & vbLf & strSender_I
objSession.Logon ...
0
votes
1answer
83 views
How to read Exchange calendar properties in an iOS app?
I am building an iOS app which adds EKEvent items to a calendar which is synced with an Exchange server. This Exchange server adds custom properties to the event items.
Is there any possibility to ...
1
vote
0answers
82 views
How do I load prepared message, with attachments, into user's default mail client?
How do I load prepared message, with attachments, into user's default mail client?
I went looking around for answers to that, and found:
Using Process.Start() with a "mailto:" url won't work, ...
0
votes
1answer
89 views
Synchronizing with Exchange Server Calendar
I have a 'Calendar' table that is part of our database structure i.e. a Calendar record will contain a unique indentifier, a start date, end date, subject and note field
I would to like write a ...
0
votes
0answers
134 views
MAPI profile creation fails with default UAC settings on windows 7 for Outlook 2010
I have to create a process under domain user credentials.
Main process is created as SYSTEM user & client process needs to be created as user who can logon on local system.
Used the below process ...
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 ...
1
vote
1answer
225 views
Using MAPI to access the Exchange Server from a Service
I was tasked with building an application that would check email using MAPI. I made use of a wrapper class coded in cpp, which is accessed from c#. I realize that combining managed and unmanaged code ...
0
votes
1answer
194 views
Get list of all rooms in outlook
I'm writing some application where I need to get an all available rooms within my organization. (the same list we get while we opening "Add Rooms" dialog in outlook)
I assume that while we doing it ...
0
votes
0answers
148 views
Outlook send mail dialog won't send email if mapi calling app has been closed[SimpleMapi]
If I close an app that has called MAPISendMail and try to send email some kind of general error is displayed "The operation has failed".
Enable troubleshooting logging is ticked but there's still no ...
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
532 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 ...
1
vote
1answer
258 views
Open mail client with pre formatted data
I need to create a email, but when the button is triggered i want it to open Outlook with a preformatted email.
Since the client have some restictions, I do not want it to send the email from the ...
0
votes
1answer
96 views
How to add an existing email account to outlook using c++
I need to write a small program that will be able to add existing email accounts to outlook so that we will be able to recieve email messages on a virtual machine. We are using outlook 2003 and ...
0
votes
1answer
283 views
How to open email client with attachment from Java
Already there are too many questions with this.
Possible duplicate:
1. How to open an email client and automatically attach file in java
2. Start Mail-Client with Attachment?
My requirement is:
1. ...
2
votes
2answers
178 views
Filter Outlook appointments by category
I have written this code to find the total duration of all appointments of a specified category within a specified time range:
private readonly MAPIFolder _timing;
private int ...
0
votes
1answer
69 views
Change Account in Extended MAPI
I am attempting to use Extended MAPI to send and receive email from an app using the same email address despite the computer the software is installed on. Originally I was trying to log in to a ...
1
vote
1answer
135 views
Trouble sending a MAPI message
I am trying to send a message using Extended MAPI, but keep getting an E_ACCESSDENIED error. I am using a C# class which invokes a cpp dll. I am able to check mail and delete messages, but not send. ...
0
votes
2answers
277 views
Logging in to Exchange using MAPI
I am writing a C# program that makes use of MAPI. I know I should use a different language for this, but I was told to use .NET. I have the application running, but I am having a couple of problems ...
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
97 views
Creating and showing e-mail on Windows with maximal e-mail client compatibility
I need to create an executable that can be called from the command line which will create an e-mail, attach files to the e-mail and show the e-mail to the user so that they can complete the e-mail and ...
0
votes
1answer
191 views
How to query Users/Recipients sharing Contacts/Calendars with Current Outlook User?
As I mentioned in a former Question it is no problem to get shared contacts in Outlook via MAPI. But this is only possible, if you know the Users/Recipients sharing contacts (or also calendar) with ...
1
vote
1answer
68 views
Recurring appointments during a given period, MAPI way
When you query EWS or Outlook API for appointments restricted by some period for recurring ones you get fake instances. Exchange keeps only the main instance with recurrence pattern and exceptions ...


