DZone
Java Zone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
  • Refcardz
  • Trend Reports
  • Webinars
  • Zones
  • |
    • Agile
    • AI
    • Big Data
    • Cloud
    • Database
    • DevOps
    • Integration
    • IoT
    • Java
    • Microservices
    • Open Source
    • Performance
    • Security
    • Web Dev
DZone > Java Zone > Sending an Email using the JavaMail Session and Glassfish

Sending an Email using the JavaMail Session and Glassfish

I decided to share some tips about this EE environment javaMail api configuration.

Slim Ouertani user avatar by
Slim Ouertani
·
Jun. 25, 12 · Java Zone · Tutorial
Like (2)
Save
Tweet
49.58K Views

Join the DZone community and get the full member experience.

Join For Free

Purpose

This tutorial is a supplement to the article of oracle published here.

After reading this later, I decided to share some tips about this EE environment javaMail api configuration.

Introduction

Two years ago, we decided to move to JEE 6 for our enterprise solutions and take a lot of fun with new EJB 3.1 features and annotations. Glassfish has made our lives easier, it was very easy to declare variables using it's administration console.

Less complicated than using global resource environment for properties It is also the continuation to this tricks this tutorial delegate to Glassfish EE server managing mail session.

Prerequisites

Before starting this tutorial, you should:

Fully understand of http://www.oracle.com/webfolder/technetwork/tutorials/obe/java/javamail/javamail.html

Have access to an SMTP server. You must know the host name, port number, and security settings for your SMTP server. Web mail providers may offer SMTP access, view your email account settings or help to find further information. Be aware that your user name is often your full email address and not just the name that comes before the @ symbol.

Have basic familiarity with Servlets and CDIs (helpful but not required)

Create a Java mail session resource

To create and JavaMail Session :

  1. start galssfish server
  2. open admin console ( default localhost:4848)
  3. Go to Resources -> JavaMail Sessions -> click new to add new javaMail resource
  4. make sure the following field are filled in :


  1. Jndi name : EMailME for example, will be used later on lookup resource :
    @Resource(lookup = "EMailME")
  2. Mail host
  3. Default user
  4. Default sender will be used later on mailSession.getProperty("mail.from")

5- For secure Mail add this advanced setting :

1-mail.smtp.password : email password

2-mail.smtp.port : email port

3-mail.smtp.auth : true


This screenshot summarizes all these parameters :

Java Mail Session

II - Using email Service


This tutorial is a supplement to oracle one. We will use CDI with the same example.


1 - MailSessionBean Will be a CDI bean with RequestScope

2- Inject the full JavaMail Session as resource rather than create it


@Named
@RequestScoped
public class EmailSessionBean {

    @Resource(lookup = "EMailME")
    private Session mailSession;

    public void sendEmail(String to, String subject, String body) {
        MimeMessage message = new MimeMessage(mailSession);
        try {

            message.setFrom(new InternetAddress(mailSession.getProperty("mail.from")));
            InternetAddress[] address = {new InternetAddress(to)};
            message.setRecipients(Message.RecipientType.TO, address);
            message.setSubject(subject);
            message.setSentDate(new Date());
            message.setText(body);

            Transport.send(message);
        } catch (MessagingException ex) {
            ex.printStackTrace();
        }
    }
}

Look short !

4- EmailServlet remind the same except using @Inject rather than @EJB


@WebServlet(name = "EmailServlet", urlPatterns = {"/EmailServlet"})
public class EmailServlet extends HttpServlet {

    @Inject
    private EmailSessionBean emailBean;

    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
 .........
   }
 ......
}

Conclusion

Let's EE Server manager MailSession for us, keep configuration on server and thanks to Glassfish administration console managing JavaMail Session became easier.

Session (web analytics) JavaMail GlassFish

Opinions expressed by DZone contributors are their own.

Popular on DZone

  • Flutter vs React Native. How to Cover All Mobile Platforms in 2022 With No Hassle
  • A Guide to Understanding Vue Lifecycle Hooks
  • How Data and Analysis Can Power Agile Teams
  • Testing Schema Registry: Spring Boot and Apache Kafka With JSON Schema

Comments

Java Partner Resources

ABOUT US

  • About DZone
  • Send feedback
  • Careers
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • MVB Program
  • Become a Contributor
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 600 Park Offices Drive
  • Suite 300
  • Durham, NC 27709
  • support@dzone.com
  • +1 (919) 678-0300

Let's be friends:

DZone.com is powered by 

AnswerHub logo