Example email send functional
EmailConfiguration configuration = new EmailConfiguration("smtp.gmail.com", 587, true, true, "example@example.com", "password");
new EmailMessage(configuration)
.from("example@example.com")
.to("example@example.com")
.withSubject("Тема письма!")
.withBody("Текст письма")
.withAttachment("C:\\Users\\Igor\\Dropbox\\Public\\pics\\1395256762473.jpg")
.send();