Is it possible to launch outlook new meeting form from Java? (Not send the new meeting request, just launch the form).
I would also like to pass in the sent to email list.
I have been testing this:
Desktop desktop;
URI mailto = new URI("mailto:testmail@google.com");
desktop.mail(mailto);
However, this only launch outlook new mail, not new meeting.
Any suggestion?