Java tutorial
import java.awt.Desktop; public class Main { public static void main(String[] a) throws Exception { Desktop desktop = null; if (Desktop.isDesktopSupported()) { desktop = Desktop.getDesktop(); } desktop.mail(); } }