Advertisement
ASP_Volume2 Applet #39546

Send email from an applet

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)

AI

KI-Zusammenfassung: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Quellcode
original-source
try {
  URL mail = new URL("MAILTO:YOU@HOME.ORG");
} catch (MalformedURLException e) {
  System.err.println("Invalid URL");
}
   
getAppletContext().showDocument(mail);
 
Originalkommentare (3)
Wiederhergestellt von der Wayback Machine