mark outbox item for send

  • Thread starter Thread starter Bert
  • Start date Start date
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?
 
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
 
Back
Top