Vytvořit požadavek na koncept schůzky

Aspose.Email – Vytvořit žádost o schůzku v režimu konceptu

Může být užitečné vytvořit žádost o schůzku v režimu konceptu, aby byly přidány základní informace a následně mohl být tento koncept předán dalším uživatelům, kteří jej mohou upravit. Aspose.Email pro Java poskytuje flexibilitu vytvořit a uložit schůzku v režimu konceptu pro pozdější použití.

Aby bylo možné uložit schůzku v režimu konceptu, má vlastnost Method třídy Appointment být nastavena na Publish.

Java


 String sender = "test@gmail.com";

String recipient = "test@email.com";

MailMessage message = new MailMessage(sender, recipient, "", "");

Calendar calendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));

calendar.set(2012, Calendar.NOVEMBER, 1, 0, 0, 0);

Date startDate = calendar.getTime();

calendar.set(2012, Calendar.DECEMBER, 1);

Date endDate = calendar.getTime();

MailAddressCollection attendees = new MailAddressCollection();

attendees.addMailAddress(new MailAddress("attendee_address@aspose.com", "Attendee"));

WeeklyRecurrencePattern expected = new WeeklyRecurrencePattern(3);

Appointment app = new Appointment("Appointment Location", "Appointment Summary", "Appointment Description",

        startDate, endDate,

        new MailAddress("organizer_address@aspose.com", "Organizer"), attendees, expected);

//Set the Appointment as Draft

app.setMethod(AppointmentMethodType.Publish);//.Method = AppointmentMethodType.Publish;

message.addAlternateView(app.requestApointment());

MapiMessage msg = MapiMessage.fromMailMessage(message);

// Save the appointment as draft.

msg.save("data/AsposeDraft.msg");

Stáhnout běžící kód

Stáhnout Create Draft Appointment Request z některého z níže uvedených sociálních kódovacích portálů: