That's a Redemption FAQ, covered on the Web site. It's normal for the items
to sit in Drafts and they won't go out until either a scheduled send/receive
or until you call to engage the send/receive transport by using SyncObjects
and starting a synch.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
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