// set the attendees of the event
Participant attendee1 = new Participant("Attendee1",
"attendee1@attendee.com", ParticipantType.REQUIRED);
List<Participant> list = new ArrayList<Participant>();
list.add(attendee1);
Invite invite = new EmailInviteImpl(props);
Date startDate = new Date(System.currentTimeMillis() + 600000);
Date endDate = new Date(startDate.getTime() + 1800000);
invite.sendInvite("Testing Event", "Testing dummy event", from, list,
startDate, endDate, "Delhi");
}