Please visit our sponsor
UNKNOWN //************************************** // Name: Send email from an applet // Description:Can I send an Email from an applet? Of Course you can just use the following! OR you could look at www.javasoft.com for Java mailAPI. (Found on the web--Java FAQ at http://www.irt.org) // By: // // // Inputs:None // // Returns:None // //Assumes:None // //Side Effects:None //************************************** try { URL mail = new URL("MAILTO:YOU@HOME.ORG"); } catch (MalformedURLException e) { System.err.println("Invalid URL"); } getAppletContext().showDocument(mail);