Java Outlook Connector is mainly a Java wrapper of the Microsoft's Outlook Object Model API. More documentation of the underlying Outlook API is available on Microsoft's web site.
Please have a look here for specific details about the Outlook methods and properties:
http://msdn.microsoft.com/en-us/library/aa221870.aspx
API Reference
| Classic JavaDoc |
Overview
The Outlook class provides methods to access the Outlook application, folders and items. A typical starting point to work with Outlook is to create a new instance of this class:
For more information, have a look at the Getting started guide.See Also:
Outlook outlook = new Outlook();
try
{
// Call methods on the outlook object
}
finally
{
outlook.dispose();
}
For more information, have a look at the Getting started guide.See Also:
Top classes
OutlookContact class in com.moyosoft.connector.ms.outlook.contact
Show all classes >
Represents an Outlook contact item. To access contacts stored in Outlook, please have a look at this sample application. A new contact item can be created by instantiating this class. To save the new contact in Outlook, call the method save(). This class provides getter and ... more >
OutlookMail class in com.moyosoft.connector.ms.outlook.mailRepresents an Outlook e-mail item. For an example on how to send an e-mail, please have a look at this sample application. This class provides getter and setter methods to access or modify the mail's properties.
OutlookAppointment class in com.moyosoft.connector.ms.outlook.appointmentRepresents an appointment or meeting item stored in the Outlook calendar. A new appointment can be created by instantiating this class. To save the new appointment to the calendar, call the method save(). This class provides getter and setter methods to access or modify the appoin ... more >
OutlookTask class in com.moyosoft.connector.ms.outlook.taskOutlookMeeting class in com.moyosoft.connector.ms.outlook.meetingRepresents a meeting request/response sent by e-mail. An OutlookMeeting is usually received in the Inbox folder when an OutlookAppointment object is sent from another user. The OutlookMeeting object can't be directly created. It's automatically created by Outlook when an appointment ... more >
Outlook class in com.moyosoft.connector.ms.outlookProvides access to the Outlook application. An Outlook object is the starting point for accessing Outlook, its folders and items. The code using the Outlook class has to run on the computer where the Outlook application is installed. The default constructor connects to that Outlook a ... more >
OutlookFolder class in com.moyosoft.connector.ms.outlook.folderOutlookItem class in com.moyosoft.connector.ms.outlook.itemBase class for any Outlook item, like a mail, contact or appointment.
OutlookJournal class in com.moyosoft.connector.ms.outlook.journalOutlookPost class in com.moyosoft.connector.ms.outlook.postAttachmentsCollection class in com.moyosoft.connector.ms.outlook.attachmentOutlookDistributionList class in com.moyosoft.connector.ms.outlook.distlistAddressEntry class in com.moyosoft.connector.ms.outlook.addressentryOutlookRemoteItem class in com.moyosoft.connector.ms.outlook.remoteOutlookTaskRequest class in com.moyosoft.connector.ms.outlook.taskOutlookDocument class in com.moyosoft.connector.ms.outlook.documentShow all classes >
Community comments
Powered by JavaDocPlus