I need to send e-mails from a servlet running within Tomcat. I'll always send to the same recipient with the same subject, but with different contents.
What's a simple, easy way to send an e-mail in Java?
|
I need to send e-mails from a servlet running within Tomcat. I'll always send to the same recipient with the same subject, but with different contents. What's a simple, easy way to send an e-mail in Java? Related: |
||||
|
|
|
Here's my code for doing that:
You can get the JavaMail libraries from Sun here: http://java.sun.com/products/javamail/ |
|||||||
|
|
JavaMail can be a bit of a pain to use. If you want a simpler, cleaner, solution then have a look at the Spring wrapper for JavaMail. The reference docs are here: http://static.springframework.org/spring/docs/2.5.x/reference/mail.html However, this does mean you need Spring in your application, if that isn't an option then you could look at another opensource wrapper such as Vesijama: http://code.google.com/p/vesijama/ Alternatively, you can use JavaMail directly, but the two solutions above are easier and cleaner ways to send email in Java. |
|||||||
|
|
Yet another option that wraps the Java Mail API is Apache's commons-email. From their User Guide.
|
|||
|
|
|
To followup on jon's reply, here's an example of sending a mail using Vesijama (from Vesijama homepage). The idea is that you don't need to know about all the technical (nested) parts that make up an email. In that sense it's a lot like Apache's commons-email, except that Vesijama is a little bit more straightforward than Apache's mailing API when dealing with attachments and embedded images. Spring's mailing facility works as well but is a bit awkward in use (for example it requires an anonymous innerclass) and ofcourse you need to a dependency on Spring which gets you much more than just a simple mailing library, since it its base it was designed to be an IOC solution. Vesijama btw is a wrapper around the JavaMail API.
Vesijama: code.google.com/p/vesijama/wiki/Manual Apache Commons mail: commons.apache.org/email/index.html Spring mail: static.springframework.org/spring/docs/2.0.x/reference/mail.html JavaMail: java.sun.com/products/javamail/ |
|||
|
|
|
JavaMail is great if you can rely on an outside SMTP server. If, however, you have to be your own SMTP server, then take a look at Asprin. |
|||
|
|
|
I usually define my javamail session in the GlobalNamingResources section of tomcat's server.xml file so that my code does not depend on the configuration parameters:
and I get the session via JNDI:
|
|||
|
|
|
use the Java Mail library
This is a truncated version of the code I use to have an application send emails. Obviously, putting a body and recipients in the message before sending it is probably going to suit you better. The maven repository location is artifactId: javax.mail, groupId: mail. |
|||
|
|