Questo è il codice esatto che sto utilizzando:

<%@ page contentType="text/html" language="java" import="java.util.*, javax.mail.*, javax.mail.internet.*, javax.activation.*"%>
<%
String smtpHost = "mail.ittweb.net";
Properties props = System.getProperties();
props.put("mail.smtp.host", smtpHost);

Session c = Session.getDefaultInstance(props, null);

MimeMessage message = new MimeMessage(c);
message.setFrom(new InternetAddress("supporto@ittweb.net"));
message.addRecipient(Message.RecipientType.TO, new InternetAddress("lcuclz@libero.it"));
message.setSubject("PROVA OGGETTO");

Multipart multipart = new MimeMultipart();
BodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setText("CORPO MESSAGGIO");
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);

Transport.send(message);
%>
e sono entrambi indirizzi che esistono!