Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q4025 Can I send an Email from an applet?

irt.org | Knowledge Base | Java | Q4025 [ previous next ]

Q4025 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.

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

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.