I want to create an E-Mail with a Java Application using Outlook and the OLE Client.
I searched for examples and found quite a few. They all start the same way:
if you are using something with web, this can help you:
This is an email link:
Send Mail
Note: Spaces between words should be replaced by %20 to ensure that the browser will display the text properly.
but in a application you can start a process mailto:
like
System.Diagnostics.Process.Start("mailto:someone@example.com?Subject=Hello%20again&body=your%20textBody%20here")
it will work with all e-mail clients