Outlook Redemption is a library which works around the security limitations introduced in Outlook 2002. It also provides some additional features which are not accessible using the Outlook object model.
Questions tagged [outlook-redemption]
515 questions
2
votes
0 answers
Do I need to call RDOMail.Save after setting a value to RDOMail.Fields?
I'm using Redemption to interact with Outlook emails in C#. Do I need to call RDOMail.Save after setting a value to RDOMail.Fields?
rdoMail.Fields["MyProperty"] = "MyValue";
rdoMail.Save(); // not sure if this is necessary
During my testing, it…

Leon Zhou
- 633
- 6
- 20
2
votes
1 answer
I get MAPI_E_UNKNOWN_ENTRYID when do GetMessageFromID() in thread through Redemption
I used Redemption (http://dimastr.com/redemption/home.htm) for develop my Outlook AddIn. When I try GetMessageFromId in STA-thread(!) at first time all good, but in next times i get MAPI_E_UNKNOWN_ENTRYID.
RDOSession rdoSession = null;.
…

Alexey Karpenko
- 35
- 5
2
votes
1 answer
Wrong OS or OS Version when using Redemption
I'm trying to incorporate outlook redemption into a C# project (VS2015 Enterprise), I downloaded the dll's and used regsrv32 to register the 64 bit DLL, then added a reference within the C# project.
When running the application I get 'Wrong OS or OS…

Mrk Fldig
- 4,244
- 5
- 33
- 64
2
votes
1 answer
Send Message with Custom Properties with Redemption
I’m using Redemption.dll to set custom properties to my messages with set_Filed() and get_field() in C#. Everything works perfectly until the moment I send my messages.
From Outlook I use RDOMail.Send() and this sent the message to the Drafts…

Dimi
- 21
- 3
2
votes
1 answer
Getting signature from Outlook using python with Redemption RDO
I wrote a program that creates a mail in outlook and saves it in the .msg format. I want to add the signature of the user that is sending the mail (so the current account user) at the end of the HTMLBody. So far I haven't been able to find…

plumberry
- 23
- 1
- 6
2
votes
1 answer
Version of Outlook Redemption
What version of Redemption should i use if i have:
Windows 7 x64, WinForms App (x64), Outlook 2010 x86.
The problem is that Redemption64 5.0 does not work in this case.

Rover
- 2,203
- 3
- 24
- 44
2
votes
1 answer
Multiple Actions for one Outlook rule in Powershell
I have a question about Outlook Rules in Powershell. I wrote some code that successfully stores any incoming e-mail from a certain sender to the deleted-items folder. I did this because when the mails enter the junk folder, the junk folder still has…

Tom Kustermans
- 521
- 2
- 8
- 31
2
votes
2 answers
Wait for Mail to send then delete it from sent-folder in PowerShell
I'm currently writing a script to automatically send some mails.
I want to send an automated mail, and for purpose of a clean mailbox I want these automated mails to be deleted from the sent-folder straight away.
I have got the script so far as to…

Tom Kustermans
- 521
- 2
- 8
- 31
2
votes
2 answers
Create MAPI profile for a service account
In the past I've used profman2 to create MAPI profiles for servers that need access to Exchange mailboxes when I don't want to install Outlook on a server. This works okay when I'm able to log in as the user who needs access to the profiles. This…

Douglas Anderson
- 4,652
- 10
- 40
- 49
2
votes
2 answers
MAPI_E_FAILONEPROVIDER from Redemption
I'm trying to user Redemption to update a user's Outlook contacts. The user I'm affecting is passed in the exchangeUser, call him "Target User".
This code works when I run it logged in as myself:
public OutlookFolders(string outlookRootFolder,…

RossFabricant
- 12,364
- 3
- 41
- 50
2
votes
2 answers
GetSharedDefaultFolder() throws error MAPI_E_NOT_FOUND - redemption
I am using redemption in my windows application. There I have written this code
try
{
rFolder = rSession.GetSharedDefaultFolder(memberName, rdoDefaultFolders.olFolderCalendar);
rItems = rFolder.Items;
}
But when it executing the line…

John Gates
- 96
- 10
2
votes
0 answers
Outlook reply, "No" to "Automatic Picture Download", results in attachments in reply email
My application dispatches HTML email notifications that have a couple of images. We capture the reply message with a custom ribbon button. When the user replies they are prompted to download content from the internet by a dialog. If they select…

Mark Dineen
- 390
- 3
- 10
2
votes
3 answers
Programmatically accessing "Offline Address book" using Redemption
How to access "Offline Address Book" (from exchange server/outlook configured to exchange machine) using Redemption dll (C#).
I am looking for some sample code to proceed with my task.

Preeti
- 1,386
- 8
- 57
- 112
2
votes
1 answer
Error in IMAPISession.OpenEntry: MAPI_E_NOT_FOUND
I am using Redemption in some routines and one of those routines makes a call to:
RDOMail rdoMail = Globals.ThisAddIn.session.GetMessageFromID(mail.EntryID, folder.StoreID, Type.Missing);
And it throws this exception eventually, it does not always…

Joe Almore
- 4,036
- 9
- 52
- 77
2
votes
3 answers
Outlook-Redemption issue with Outlook 32 bit on 64 bit machine
I'm having issues with redemption because Outlook 32 bit can be installed on a 64 bit machine. The RedemptionLoader doesn't determined the bit version of Outlook installed on a 64 bit machine. Has anyone run into this before?

user3067752
- 103
- 1
- 8