G
Guest
Hello,
I inherited a mail merge with several thousand records some of which have
sent and some of which haven't. The user tried to solve the problem by
dragging a bunch of records out of the Outbox into another folder and then
dragging them back into the outbox.
Now Outlook doesn't recognize these messages as spooled to send...they have
no sent date etc.
Works fine if you open up one of them and press send again.
Is there a simple VB solution to reset these to send out?
I am a VB newbie and I found the Sent and SentOn properties of the mailitem
and did this
Public Sub SendOutbox()
Dim objOutlookMsg As Outlook.MailItem
objOutlookMsg.SentOn = Now()
End Sub
Apparently both of these are read only though, so I can't get at them.
TIA-
JH
I inherited a mail merge with several thousand records some of which have
sent and some of which haven't. The user tried to solve the problem by
dragging a bunch of records out of the Outbox into another folder and then
dragging them back into the outbox.
Now Outlook doesn't recognize these messages as spooled to send...they have
no sent date etc.
Works fine if you open up one of them and press send again.
Is there a simple VB solution to reset these to send out?
I am a VB newbie and I found the Sent and SentOn properties of the mailitem
and did this
Public Sub SendOutbox()
Dim objOutlookMsg As Outlook.MailItem
objOutlookMsg.SentOn = Now()
End Sub
Apparently both of these are read only though, so I can't get at them.
TIA-
JH