View Single Post
  #8  
Old September 24th 08, 01:06 AM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default C# Redemtion not able to send reply

What are your versions of Outlook and Redemption?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
wrote in message
...
I have following code which tries to reply to mail, however the mail
sits in drafts and displays "Message is not sent".

Redemption.RDOFolder defaultFolder = redemption.findRDOFolder("Inbox",
rdoStore);
Redemption.RDOMail rdoMail = redemption.findRDOMail("Test Subject",
defaultFolder);

//Create a replyall mail object
Redemption.RDOMail replyMail = rdoMail.ReplyAll();
replyMail.SentOn = DateTime.Now;
replyMail.Save();
replyMail.Send();

Please help



Ads