My aim is to open default email client on MAC OSX and Linex from java application.
On the linex machine i am able to open the default email client using the below code.
String[] sendEmail = {xdgEmailCommand, "--subject", Subject, "--attach", path, "mail@yahoo.com"};
currentRuntime = Runtime.getRuntime();
currentRuntime.exec(sendEmail );
Looking to above can you plz suggect something that I can do on MAC OSX.
On the linex machine i am able to open the default email client using the below code.
String[] sendEmail = {xdgEmailCommand, "--subject", Subject, "--attach", path, "mail@yahoo.com"};
currentRuntime = Runtime.getRuntime();
currentRuntime.exec(sendEmail );
Looking to above can you plz suggect something that I can do on MAC OSX.