![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
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 |
#2
|
|||
|
|||
![]()
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 |
#3
|
|||
|
|||
![]()
On Sep 22, 6:07*pm, "Ken Slovak - [MVP - Outlook]"
wrote: That's aRedemptionFAQ, covered on the Web site. It's normal for the items to sit in Drafts and they won't go out until either a scheduledsend/receive or until you call to engage thesend/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 toreplyto mail, however the mail sits in drafts and displays "Message isnotsent". 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 I mentioned to forget that I am starting the send receive after the replyMail.send() is called. Still I see the mail seating in the Drafts folder. Thats the reason I raised the question here in the forums. I also tried doing it myself manually (click on send/receive or function key F9) without luck. I also tried moving the replyMail to Outbox using replyMail.Move(..) When I looked at the mail in Draft, it says "This message has not been sent" I don't know whats going on |
#4
|
|||
|
|||
![]()
Why are you setting .SentOn? Try not setting it and see what happens.
-- 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 snip wrote in message ... I have following code which tries toreplyto mail, however the mail sits in drafts and displays "Message isnotsent". 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 I mentioned to forget that I am starting the send receive after the replyMail.send() is called. Still I see the mail seating in the Drafts folder. Thats the reason I raised the question here in the forums. I also tried doing it myself manually (click on send/receive or function key F9) without luck. I also tried moving the replyMail to Outbox using replyMail.Move(..) When I looked at the mail in Draft, it says "This message has not been sent" I don't know whats going on |
#5
|
|||
|
|||
![]()
On Sep 23, 3:36*am, "Ken Slovak - [MVP - Outlook]"
wrote: Why are you setting .SentOn? Trynotsetting it and see what happens. -- 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 didn't help removing .SentOn() |
#6
|
|||
|
|||
![]()
On Sep 23, 3:36*am, "Ken Slovak - [MVP - Outlook]"
wrote: Why are you setting .SentOn? Trynotsetting it and see what happens. -- 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 snip wrote in message .... I have following code which tries toreplyto mail, however the mail sits in drafts and displays "Message isnotsent". 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 I mentioned to forget that I am starting the send receive after the replyMail.send() is called. Still I see the mail seating in the Drafts folder. Thats the reason I raised the question here in the forums. I also tried doing it myself manually (click on send/receive or function key F9) without luck. I also tried moving the replyMail to Outbox using replyMail.Move(..) When I looked at the mail in Draft, it says "This message hasnotbeen sent" I don't know whats going on I forgot to add here that I was trying to reply to a mail in a shared (delegated with admin rights) inbox. Reply to mails in own account work correctly. So now I have questions below 1. does redemption supports replying to mails in shared inbox? 2. if yes how? |
#7
|
|||
|
|||
![]()
That's a rather important bit of information. If you call to SyncObjects
you're just calling for a send/receive in your own mailbox account. You might just have to wait for the delegate mailbox to send. -- 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 ... snip I forgot to add here that I was trying to reply to a mail in a shared (delegated with admin rights) inbox. Reply to mails in own account work correctly. So now I have questions below 1. does redemption supports replying to mails in shared inbox? 2. if yes how? |
#8
|
|||
|
|||
![]()
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 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Can't Send After Changing From/Reply-To | mhanna | Outlook - General Queries | 2 | December 12th 06 04:43 PM |
Redemtion and UTF-8 | [email protected] | Add-ins for Outlook | 5 | July 19th 06 06:30 PM |
Cannot send but can reply | Kline | Outlook - Installation | 0 | March 31st 06 03:59 AM |
Redemtion & Outlook 2000 | Paul D.Smith | Outlook - General Queries | 4 | February 22nd 06 04:01 PM |
I can send emails, but can't reply to one. | lvbigrick | Outlook - Installation | 5 | January 17th 06 09:57 PM |