Re: Sending mails using de default email program.
Posted By:
Ilya_Kharmatsky
Posted On:
Tuesday, March 5, 2002 06:31 AM
hi! here is the way how you can do it if your application is running on Win2000.
String cmd = "cmd.exe /c start mailto:default@mail?subject=default_subject&body=default%20body"";
try
{
Runtime.getRuntime().exec(cmd);
}catch(java.io.IOException e)
{e.printStackTrace();}