I'm trying to use the java mail api.
this is my code, I hope you can help me
Properties properties = System.getProperties();
properties .put("mail.smtp.host", host);
Session session = Session.getDefaultInstance(properties , null);
Message msg = new MimeMessage(session);
and this is the error:
java.lang.NoClassDefFoundError: com/sun/mail/util/SharedByteArrayInputStream"