The outlook-redemption tag has no wiki summary.
4
votes
3answers
977 views
Programatically accessing “Offline Address book” using Redemption
How to access "Offline Address Book" (from exchange server/outlook configured to exchange machine) using Redemption (C#).
I am looking for some sample code to proceed with my task.
1
vote
0answers
123 views
C# code to open attachment NOT using property accessor and redemtion
I have used Property Accessor in a project using VSTO and Outlook 2007 to open the mail attachment. I need to run the same project in Outlook 2003, how can I have alternate code for my requirement ?I ...
1
vote
5answers
383 views
AV when sending email via Outlook and Redemption
Here is my code:
const
olMailItem = 0;
var
olApp, OlNameSpace, OlItem, rdSafeItem, rdUtils: variant;
begin
olApp:= CreateOleObject ('Outlook.Application');
olNameSpace:= olApp.GetNamespace ...
1
vote
2answers
485 views
How to get Outlook Redemption.dll to self register during a click once install?
can't seem to figure it out... I need to copy Redemption.dll to a folder (eg. C:\Program Files (x86)\Redemption) and then regsvr32 it.
I also need this to happen if Redemption.dll already exists on a ...
0
votes
1answer
20 views
Can't add a task when another instance of outlook is running
I try to add a task/appointment to outlook from windows service. I'm using such code to do this:
RDOSession session = new RDOSession();
session.Logon();
RDOAppointmentItem appo = ...
0
votes
1answer
75 views
RDO Outlook Redemption access mailbox from test server
I've built a web app that use Redemption to read a mailbox, let's call it "custom@domain.com". It works fine using localhost but when I deploy it I get this exception.
Error ...
0
votes
1answer
76 views
Outlook Redemption - Change the default inbox while reading emails
I'm trying to read a different Inbox for another account with one user. So if I'm user Bob and I have access to mailboxes bob@domain.comandalerts@domain.com I want to use Outlook Redemptions to read ...
0
votes
2answers
28 views
How to set property as PT_BINARY (and not PT_MV_LONG) when using Redemption?
Update:
This issue was fixed in Redemption 5.2:
Previously, named MAPI properties in the "string" namespace specified in the DASL format ... always assumed to be of string type (PT_UNICODE or ...
0
votes
0answers
144 views
Outlook Redemption accessing delegated accounts with MS Outlook connected to gmail (google apps)
I have been banging my head against a brick wall for a couple of days now. I was using redemption previously to send mail on behalf of delegated accounts (using MS Exchange 2003 and outlook 2003, ...
0
votes
1answer
83 views
Outlook Redemption: attachment streaming
I'm saving a lot of attachments in bulk using RDOAttachment.SaveAs however this seriously slows down the whole operation as they all have to go to disk first. Is there any way to stream them directly ...
0
votes
0answers
79 views
NEED Outlook Redemption project example in C
I'm a new programmer from Unix world and I have to deliver a small and fast project for Windows, I need to interact with Outlook to send messages without the boring warning, I found Outlook ...
0
votes
1answer
284 views
Sending Outlook / Exchange Task Request using without Outlook Interop
I am looking for a way to send an Exchange Task Request without using the Outlook Interop. Ideally something using SMTP, but I understand that's likely not possible. I have tried many solutions but ...
0
votes
0answers
202 views
Using Redemption in Outlook Add-In returns “Object Reference Not set to an instance of an object”
i All,
I'm trying to use Redemption in my outlook plugin but have issues from the beginning.
My task is quite simple. I want to get the SMTP address of the sender, TO, CC and BCC for exchange and ...
0
votes
2answers
134 views
Where do I go to learn to write raw MAPI commands for Exchange integration?
I've had a few headaches trying to use Outlook and Redemption in my VB .Net application. Is there a guide anywhere on the net that describes the MAPI protocol and how I might go about using it to ...
0
votes
1answer
92 views
Read updated message body in Outlook 2003
I have an application that uses the Redemption library. A user can open a meeting and add some notes to a cancellation. Prior to them editing it, the message body is already set with some default ...
0
votes
1answer
165 views
Using Redemption, How can I add a default Signature to an outgoing Email Message?
Here is the code that I am using. I have spent some time looking at the Redemption objects, but, nothing jumps out at me:
public static bool PopEmail(string domainUserName, string mSubject, ...
0
votes
1answer
2k views
Exchange 2010 - Exchange MAPI connection problem
I have a software solution for Exchange 2000/2003/2007 and now hopefully after this for 2010. The software runs on the server and uses Exchange MAPI through RDO to talk the the exchange server, ...