Closed GoogleCodeExporter closed 9 years ago
Hi There, I am having the same problem here
Original comment by manuel.d...@gmail.com
on 24 Jan 2011 at 6:35
Problem is SimpleMailMessage dont hava setup in applicationContext.xml
Fix it let comment like that
//@Autowired
private transient SimpleMailMessage simpleMailMessage;
and modify function sendMessage
public void sendMessage(String mailTo, String message) {
//Add line
simpleMailMessage = new SimpleMailMessage();
simpleMailMessage.setTo(mailTo);
simpleMailMessage.setText(message);
mailSender.send(simpleMailMessage);
}
Original comment by tk1c...@gmail.com
on 28 Jan 2011 at 5:04
Fixed in 0.1.4
Original comment by wa...@digitalface.ca
on 24 Feb 2011 at 9:30
Original issue reported on code.google.com by
msophia1...@gmail.com
on 19 Jan 2011 at 4:53Attachments: