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
ملخص الذكاء الاصطناعي: 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.
كود المصدر
try {
URL mail = new URL("MAILTO:YOU@HOME.ORG");
} catch (MalformedURLException e) {
System.err.println("Invalid URL");
}
getAppletContext().showDocument(mail);
التعليقات الأصلية (3)
مسترجع من Wayback Machine