README.md
December 5, 2022 ยท View on GitHub
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)
More Info
| Submitted On | |
| By | N/A |
| Level | Unknown |
| User Rating | 2.5 (5 globes from 2 users) |
| Compatibility | Java (JDK 1.1) |
| Category | Applet |
| World | Java |
| Archive File |
Source Code
try {
URL mail = new URL("MAILTO:YOU@HOME.ORG");
} catch (MalformedURLException e) {
System.err.println("Invalid URL");
}
getAppletContext().showDocument(mail);