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
1
vote
3 answers
Need to switch accounts in outlook using python for sending email using other account
I have the following code
import win32com.client as win32
outlook = win32.Dispatch('outlook.application')
mail = outlook.CreateItem(0)
mail.To = 'madanraj.c@sss.com;
mail.Subject = 'Daily Backlog'
mail.Send()
I have two accounts in outlook and i…

Madan Raj
- 279
- 4
- 15
1
vote
1 answer
Redemption Load Msg to RDOMail
I am trying to load Msg file to MailItem, I cannot find any method that can load from Stream or Array. I am forced to save the file on the Client PC.
OOM I used
Application.CreateItemFromTemplate(path, Type.Missing)
I can delete the temp file…

Benzhi Pan
- 161
- 1
- 14
1
vote
2 answers
Extract msg attachment from eml file
I am trying to extract an MSG file from an EML attachment, I can get the script to produce the name of the attachment but I cannot figure out how I get the attachment to be saved to the PST rather than the EML, my code looks as follows
session = new…

Jakes
- 11
- 2
1
vote
1 answer
Error when creating new RDOSession using RedemptionLoader
Below is my code:
RDOSession pstSession = null;
string binPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
RedemptionLoader.DllLocation64Bit = Path.Combine(binPath, "Redemption64.dll");
RedemptionLoader.DllLocation32Bit =…

Mohit
- 65
- 9
1
vote
2 answers
Outlook custom MailTip on MailItem
Is it possible to modify an Outlook MailItem object to display a Mailtip with custom text? It doesn't look to be possible using the OOM, how about at the MAPI layer, i.e. using Redemption?
If not possible, is there some way to achieve a similar…

jkamdjou
- 783
- 1
- 5
- 9
1
vote
1 answer
Changing SenderName in a .msg file
How can I change the property SenderName and SenderEmailAddress in a .msg file, not from within Outlook?
I know that this is not possible with the Outlook COM, because it is a read only property.
I tried using the class Redemption.RDOSession and the…

Nuno
- 126
- 2
- 14
1
vote
1 answer
Mail Stuck in Outbox of Outlook 2013 sent using Redemption
Currently i am in a process of migrating applications to new version, i am facing a problem in the application. Basically its a VBA Access application which will send reports to users. For the mail delivery part it uses Redemption.dll
Current…

DeadShot
- 13
- 2
1
vote
1 answer
Need to get Type of operation performed on Mail
I want to generate EmailThreading ..
Can some one advise, which field i can use from Redemption to get TypeOf(Replied,Forwared etc..)for given mail chain.
Let's say for the case,
A send mail to B.
B forward that mail to C.
C forward that mail to…

Viral
- 363
- 2
- 4
- 14
1
vote
2 answers
Using RDO/MAPI to extract large public folder stores and getting E_MAPI_TOO_BIG
I am attempting to export the contents of my company's fairly large public folder layout (000s of folders) from Exchange Server 2010 using RDO 5.14.
I am hitting the issue that a lot of people find, in that at some point Exchange 2010 gives the…

Steve Knight
- 923
- 7
- 12
1
vote
1 answer
Redemption.dll regsvr32 failed
Since we updated MS Office 2016 to version 1703 (Build 7967.2139), all the users having issues with registering Redemption.dll using regsvr32. It just doesn't give any error while running the regsvr32 command. We ran the command in admin mode. I…

Jahedur Rahman
- 29
- 6
1
vote
2 answers
How to open a PST with CDO installed on exchange server machine?
I want to read a standalone PST file on Exchange server machine. As Microsoft suggested we can't install the Outlook client on exchange server.I have installed the Exchange client and CDO 1.2 library on server. But still I am not able to open the…

Amit Nagare
- 11
- 2
1
vote
0 answers
Outlook Error MAPI_E_OBJECT_CHANGED at Save() RDOEmail
Calling Save() twice raice MAPI_E_OBJECT_CHANGED error. The weird thing is if I select another mail on the grid and go back and then select the first one again and perform the action it works fine. This only happens with imap accounts.
Code:
public…

Hernán Clavería
- 11
- 2
1
vote
1 answer
Redemption in MS Access / Outlook (trying to include a separate message file in email)
This code is in MS Access (2010) VBA, using the Redemption library with Microsoft Outlook 2010.
I had this process working before, but we recently had a Citrix upgrade that I guess reset something in my Outlook and now the process no longer works.
I…

user7285972
- 13
- 3
1
vote
1 answer
MHT file generation using Redemption
We are generating mht file using Redemption dll in C#.net.
We are getting body part from .msg using rdoMail.HTMLBody..and create mht file using this value.
But created mht file not able to print using word instance..or word can not able to open it…

Viral
- 363
- 2
- 4
- 14
1
vote
2 answers
Querying "field" in Outlook RDOMail object
I have a piece of code that uses DASL queries to query values saved in the user property of items in an RDOFolder, something like…

Rachel
- 13
- 3