|
SafeJournalItem
object exposes
Outlook.JournalItem object properties and methods blocked by the security
patch.
The example below outputs the contact
names of each journal item in the default Journal folder:
set App = CreateObject("Outlook.Application")
set Folder = Application.Session.GetDefaultFolder(olFolderJournal)
set SafeJournalItem = CreateObject("Redemption.SafeJournalItem")
for each item in Folder.Items
SafeJournalItem.Item = item
Debug.Print SafeJournalItem.ContactNames
next |
|
The following properties and
method are inherited from the
SafeItem object:
Attachments, Auth,
Key, Body, Fields, Item, Recipients, RTFBody, Sender, Version
CopyTo,
GetIDsFromNames, Import, SaveAs, Send
|
|
Properties |
|
ContactNames |
Returns a String
representing the contact names associated with the journal entry. Read
only.
|
|
HTMLBody
|
Returns or sets a String representing the HTML body
of the specified item. The HTMLBody property should
be an HTML syntax string. Read-only.
|
|
|
|