Working with Appointments

Load and Save an Appointment in ICS Format

The Appointment class in Aspose.Email for Java can be used to load an appointment in ICS format as well as to create a new appointment and save it to a disk in ICS format. In this article, we first create an appointment and save it to a disk in ICS format and then we load it.

Create an Appointment and Save to Disk in ICS Format

The following steps are required to create an appointment and save it in ICS format.

  1. Create an instance of the Appointment class and initialize it with this constructor.
  2. Pass the following arguments in the above constructor
    1. Attendees
    2. Description
    3. End Date
    4. Location
    5. Organizer
    6. Start Date
    7. Summary
    8. Created Date
    9. Last Modified Date 
  3. Call the Save() method and specify the file name and format in the arguments.

The appointment can be opened in Microsoft Outlook or any program that can load an ICS file. If the file is opened in Microsoft Outlook it automatically adds the appointment in the Outlook calendar.

The following code snippets show how to create and save an appointment to a disk in ICS format.

Load an Appointment in ICS Format

To load an appointment in ICS format, the following steps are required:

  1. Create an instance of the Appointment class.
  2. Call the Load() method by providing the path of the ICS file.
  3. Read any property to get any information from the appointment (ICS file).

The following code snippets show how to load an appointment in ICS format.

Saving Appointments to MSG Format

Aspose.Email makes it possible to save appointments directly to .msg files. The following public classes are available for customizing the saving process of apppointments:

The code sample below shows how to load an appointment from a file, and then save it in two different formats: .ics and .msg.

Appointment appointment = Appointment.load("fileName");
appointment.save("fileName.ics", new AppointmentIcsSaveOptions());
appointment.save("fileName.msg", new AppointmentMsgSaveOptions());

Create a Draft Appointment Request

In order to save an appointment in a draft mode, the Method property of the Appointment class should be set to Publish. The following code sample demonstrates the use of this property as an example.

Draft Appointment Creation from Text

Adding and Removing Attachments from Calendar Items

Aspose.Email provides an attachments collection that can be used to add and retrieve attachments associated with calendar items. This article shows how to:

  1. Create and add attachments to an Appointment class object.
  2. Retrieve attachments information from an appointment.
  3. Extract attachments from an appointment.

Formatting Appointments

The programming samples below demonstrate how to use the AppointmentFormattingOptions class to format text and HTML.

Programming Sample - Text Formatting

Programming Sample - HTML Formatting

Read Multiple Events from ICS File

Write Multiple Events from ICS File

Set Participants Status of Appointment Attendees

Aspose.Email for .NET API lets you set status of appointment attendees while formulating a reply message. This adds the PARTSTAT property to the ICS file.

Customize Product Identifier for ICalendar

Aspose.Email for Java API allows to get or set the product identifier that created iCalendar object.

How to get around Address Validation when trying to Load Appointments

Aspose.Email for Java API allows to get around the email validation error by setting the IgnoreSmtpAddressCheck option on the AppointmentLoadOptions object and passing it in to the load call.

AppointmentLoadOptions lo = new AppointmentLoadOptions();
lo.setIgnoreSmtpAddressCheck(true);
Appointment appointment = Appointment.load("app.ics", lo);