Out of Office

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to programm Outlook to switch ON Out of Office when closing
Outlook?

Thanks
 
Not using the Outlook object model, unless you're running on Outlook 2007.

To set OutOfOffice you would have to set the MAPI property PR_OOF_STATE
(0x661D000B) to False. That property is located in the default Store object,
in its Fields collection.

To set the OutOfOfficeText message you would set the text in a hidden
message in the Inbox with a MessageClass of
PM.Note.Rules.OofTemplate.Microsoft. The message text is the Body of that
hidden item.

If you aren't running Outlook 2007 you'd have to access that property and
hidden item using a low level API such as CDO 1.21 or Extended MAPI (C++ or
Delphi code only) or Redemption.(www.dimastr.com/redemption).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top