Reputation: 25
I want to compose an outlook E-mail through java on my local machine. Can someone please suggest which library to use and few related sample example's would be great.
Want I am really trying to do is this.
Please help me taking first steps to create this program.
Upvotes: 0
Views: 1017
Reputation: 29961
I assume what you really want to do is connect to the Exchange mail server and send the message without using the Outlook client application. As long as your Exchange server has SMTP support enabled, you should be able to do that using JavaMail. There's documentation, sample programs, and a FAQ. Start at the JavaMail project page.
Upvotes: 1