redemption put outgoing messages in draft while outlook send them immediately

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

Using outlook redemption.messages is first put in the draft

while using outlook they are being sent immediately without moved into the
draft folder

is it extended mapi problem?

note that i don't talk about the problem which mail is stay in the draft,it
do get out from the draft folder,at the end





thanks
 
Thanks
What if i use direct extended mapi,should the message sent directly through
the outbox?
I just need to know before diving into EX mapi code.

thanks.
 
Known Redemption issue. The messages should send just fine during the next
scheduled or manual send/receive.
 
Thanks,the problem i have is that if the user selected the draft folder
while its contains some messages,they will not be sent until the user open
it and select
send/receive.
 
You can move the messages to the Outbox folder immediately after they are
created in the Drafts folder and before you use Redemption or Extended MAPI
to submit them.:

set Msg =Application.CreateItem(0)
set Msg = Msg.Move(Application.Session.GetDefaultFolder(olFolderOutbox))
Msg.Save
....

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
 
Back
Top