boolean sent = false;
if (Desktop.isDesktopSupported()) {
Desktop desktop = Desktop.getDesktop();
try {
URI uriMailTo = new URI("mailto", "?body=" + content + "&subject=" + title, null);
desktop.mail(uriMailTo);
sent = true;
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}