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?

link|improve this question

40% accept rate
Can you run it with the debug set to true to see what is going on? There are a few days to set debug to true one is on the command line java -Dmail.debug=true the second is in extended props for smpt. Try that and see if the debug log helps. – Ali Oct 14 '11 at 18:16
I gotta be honest, I'm not sure where to view the debug log. This little class I'm making is part of a web project which I deploy to off on its own machine. I am using Eclipse to do step-by-step debugging though. As far as I can see, the headers aren't being set correctly after the calls to message.setWhatever(). – SpeedBurner Oct 14 '11 at 18:36
feedback

1 Answer

up vote 1 down vote accepted

Turns out there was a conflict in packages. Tomcat automatically includes its own JavaMail package in the Maven build for the web project which was causing problems when I was importing from the standard JavaMail.

In the project's pom.xml file, I had to exclude geronimo-javamail like this:

    <dependency>
        <groupId>org.apache.axis2</groupId>
        <artifactId>axis2-xmlbeans</artifactId>
        <version>1.4.1</version>
        <exclusions>
            <exclusion>
                <groupId>org.apache.geronimo.specs</groupId>
                <artifactId>geronimo-javamail_1.4_spec</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.