I just started out using JavaMail and I'm having difficulty making the e-mail display a few things. The messages get sent and received, however, when it comes up the subject and to: lines are empty.
This is the function I'm trying to send e-mail with. I didn't configure any properties so everything should be going at their default.
public void sendEmail(String[] ToEmailAddr, String Subject, String Body){
Session session = Session.getDefaultInstance( fMailServerConfig, null );
MimeMessage message = new MimeMessage( session );
try {
for (int i=0;i<ToEmailAddr.length;i++) {
message.addRecipient(Message.RecipientType.TO, new InternetAddress(ToEmailAddr[i]));
}
message.setSubject( Subject );
message.setText( Body );
Transport.send( message );
}
catch (MessagingException ex){
logger.error("Cannot send email. " + ex);
}
}
How can I get the recipient to see the list of recipients and the subject line?
java -Dmail.debug=truethe second is in extended props for smpt. Try that and see if the debug log helps. – Ali Oct 14 '11 at 18:16