Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q4025 Can I send an Email from an applet?

You are here: irt.org | FAQ | Java | Q4025 [ previous next ]

Of Course you can just use the following! OR you could look at www.javasoft.com for Java mailAPI.

try {
   URL mail = new URL("MAILTO:YOU@HOME.ORG");
}  catch (MalformedURLException e) {
   System.err.println("Invalid URL");
}
     
getAppletContext().showDocument(mail);

©2018 Martin Webb