How to invoke Outlook Express to send mail in a JAVA GUI

hi..i want to send a mail thru a java GUI...but when i press submit button..it has to invoke MS Outlook express and send the mail via this.pls reply soon..bi..
[194 byte] By [ranjith_iit] at [2007-11-25 17:38:31]
# 1
Runtime.getRuntime().exec("cmd /c start mailto:emailaddress@spam.com?subject=Test&body=Hello");Ataturk (the great leader of TURKiYE) says:TURK demek TURKCE demek. Ne Mutlu TURK'um Diyene!
karaTURK at 2007-7-3 14:29:19 > top of Java-index,Application & Integration Servers,Sun Java System Message Queue...
# 2

Hi,

When I execute the command like "Runtime.getRuntime().exec("cmd /c start mailto:emailaddress@spam.com?subject=Test&body=Hello");" in my java program,There is no boby in my outlook window .could you give me some suggestion? Thank you very much!

source:

import java.io.IOException;

public class TestAutoSendEMail {

public static void main(String[] args) {

try{

Runtime.getRuntime().exec("cmd /c start mailto:emailaddress@spam.com?subject=Test&body=Hello");

}

catch(IOExceptionex){

System.out.println(ex.getMessage());

}

}

}

fanth at 2007-7-3 14:29:19 > top of Java-index,Application & Integration Servers,Sun Java System Message Queue...
# 3
What I understand is it wants a another varibal pass thruadding the title was the key for me"cmd /c start \"title\" \"mailto:email@user.com?Subject=subject&Body=body\""
ComputerTherapist at 2007-7-3 14:29:19 > top of Java-index,Application & Integration Servers,Sun Java System Message Queue...