mark outbox item for send

B

Bert

I occassionally end up with mail to be sent which is not marked for sending
(that is, not italicized). With VBA is there a way to set a property or
action to mark the mailItem so Outlook will send it when I click on send?
 
M

Michael Bauer

Hi Bert,

you can call the item´s Send method with VBA. Example, if one item is in
the Outbox already:

Application.Session.GetDefaultFolder(olFolderOutbox).Items(1).Send
 
Top