I have updated my libraries, and now e-mails are sent without subject. I don't know where this happened...

Mail API is 1.4.3., Spring 2.5.6. and Spring Integration Mail 1.0.3.RELEASE.

<!-- Definitions for SMTP server -->
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
    <property name="host" value="${mail.host}" />
    <property name="username" value="${mail.username}" />
    <property name="password" value="${mail.password}" />
</bean>

<bean id="adminMailTemplate" class="org.springframework.mail.SimpleMailMessage" >
    <property name="from" value="${mail.admin.from}" />
    <property name="to" value="${mail.admin.to}" />
    <property name="cc">
        <list>
            <value>${mail.admin.cc1}</value>
        </list>
    </property>
</bean>

<!-- Mail service definition -->
<bean id="mailService" class="net.bbb.core.service.impl.MailServiceImpl">
    <property name="sender" ref="mailSender"/>
    <property name="mail" ref="adminMailTemplate"/>
</bean>

And properties mail.host,mail.username,mail.password,mail.admin.from,mail.admin.to, mail.admin.cc1.

Java class:

/** The sender. */
private MailSender sender;

/** The mail. */
private SimpleMailMessage mail;

public void sendMail() {
    this.mail.setSubject("Subject");

    this.mail.setText("msg body");          

    try {
        getSender().send(this.mail);
    } catch (MailException e) {
        log.error("Error sending mail!",e);
    }
}

public SimpleMailMessage getMail() {
    return this.mail;
}

public void setMail(SimpleMailMessage mail) {
    this.mail = mail;
}

public MailSender getSender() {
    return this.sender;
}

public void setSender(MailSender mailSender1) {
    this.sender = mailSender1;
}

Everything worked before, I am wondering if there may be any conflicts with new libraries.

link|improve this question

Did you find the problem? I'm facing it as well, so I would love it if you could follow up with the answer :). – Confusion Mar 10 '10 at 6:27
It is not so necessary at the moment, but I will try to find it until the end of the week. – Trick Mar 10 '10 at 11:56
1  
I found the solution here: stackoverflow.com/questions/1010296/… (excluding certain jars pulled in as dependencies) – Confusion Mar 10 '10 at 12:47
feedback

2 Answers

up vote 3 down vote accepted

Finally - I had the time to resolve this.

In pom.xml, I have added java mail dependency and remove exclusion for geronimo javamail in apache axis transport http dependency.

link|improve this answer
Thanks, this actually fixed the problem for me too! – OldTroll Sep 8 '11 at 16:26
feedback

I expect it's something to do with the way that you're injecting a singleton SimpleMailMessage into your bean. This is not thread-safe, since every call to your sendMail method will be using the same underlying SimpleMailmessage object. It's quite possible that some implementation change in the new libraries now means this is broken.

SimpleMailMessage has a copy constructor, so you should do it like this:

<bean id="mailService" class="net.bbb.core.service.impl.MailServiceImpl">
    <property name="sender" ref="mailSender"/>
    <property name="template" ref="adminMailTemplate"/>
</bean>

and

private SimpleMailMessage template;

public void setTemplate(SimpleMailMessage template) {
   this.template = template;
}

public void sendMail() {
    SimpleMailMessage message = new SimpleMailMessage(template);
    message.setSubject("Subject");
    message.setText("msg body");          

    try {
        getSender().send(message);
    } catch (MailException e) {
        log.error("Error sending mail!",e);
    }
}
link|improve this answer
+1 Thanks for this. But it did not remove the problem... – Trick Feb 22 '10 at 14:13
@Trick: There's nothing else in the information you've given us that would cause your issue. – skaffman Feb 22 '10 at 21:22
It must be something with libraries. I will revert everything. – Trick Feb 23 '10 at 8:42
1  
@Trick: Don't revert everything. Revert one thing at a time until you nail down which specific change broke it. Scientific method, and all that. – skaffman Feb 23 '10 at 9:59
Yes, of course :) It is not important at the moment, so I will leave this, when I'll have time. And I will report, what happens. Thanks! – Trick Feb 23 '10 at 14:24
feedback

Your Answer

 
or
required, but never shown

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