Open Source Repository

Home /jodd/jodd-3.3.2 | Repository Home



jodd/mail/SmtpServer.java
// Copyright (c) 2003-2012, Jodd Team (jodd.org). All Rights Reserved.

package jodd.mail;

import javax.mail.Authenticator;
import javax.mail.NoSuchProviderException;
import javax.mail.Session;
import javax.mail.Transport;
import java.util.Properties;

import static jodd.util.StringPool.TRUE;

/**
 * Represents simple plain SMTP server for sending emails.
 */
public class SmtpServer implements SendMailSessionProvider {

  protected static final String MAIL_HOST = "mail.host";
  protected static final String MAIL_SMTP_HOST = "mail.smtp.host";
  protected static final String MAIL_SMTP_PORT = "mail.smtp.port";
  protected static final String MAIL_SMTP_AUTH = "mail.smtp.auth";
  protected static final String MAIL_TRANSPORT_PROTOCOL = "mail.transport.protocol";

  protected static final String PROTOCOL_SMTP = "smtp";

  protected static final int DEFAULT_SMTP_PORT = 25;

  protected final String host;
  protected final int port;
  protected final Authenticator authenticator;
  protected final Properties sessionProperties;

  /**
   * SMTP server defined with its host and default port.
   */
  public SmtpServer(String host) {
    this(host, DEFAULT_SMTP_PORT, null);
  }
  /**
   * SMTP server defined with its host and port.
   */
  public SmtpServer(String host, int port) {
    this(host, port, null);
  }

  public SmtpServer(String host, Authenticator authenticator) {
    this(host, DEFAULT_SMTP_PORT, authenticator);
  }

  public SmtpServer(String host, int port, String username, String password) {
    this(host, port, new SimpleAuthenticator(username, password));
  }

  public SmtpServer(String host, String username, String password) {
    this(host, DEFAULT_SMTP_PORT, new SimpleAuthenticator(username, password));
  }

  /**
   * SMTP server defined with its host and authentication.
   */
  public SmtpServer(String host, int port, Authenticator authenticator) {
    this.host = host;
    this.port = port;
    this.authenticator = authenticator;
    sessionProperties = createSessionProperties();
  }

  /**
   * Prepares mail session properties.
   */
  protected Properties createSessionProperties() {
    Properties props = new Properties();
    props.setProperty(MAIL_TRANSPORT_PROTOCOL, PROTOCOL_SMTP);
    props.setProperty(MAIL_HOST, host);
    props.setProperty(MAIL_SMTP_HOST, host);
    props.setProperty(MAIL_SMTP_PORT, String.valueOf(port));
    if (authenticator != null) {
      props.setProperty(MAIL_SMTP_AUTH, TRUE);
    }
    return props;
  }


  /**
   * {@inheritDoc}
   */
  public SendMailSession createSession() {
    Session mailSession = Session.getInstance(sessionProperties, authenticator);
    Transport mailTransport;
    try {
      mailTransport = getTransport(mailSession);
    catch (NoSuchProviderException nspex) {
      throw new MailException(nspex);
    }
    return new SendMailSession(mailSession, mailTransport);
  }

  /**
   * Returns mail transport.
   */
  protected Transport getTransport(Session sessionthrows NoSuchProviderException {
    return session.getTransport(PROTOCOL_SMTP);
  }

  // ---------------------------------------------------------------- getters

  /**
   * Returns SMTP host address.
   */
  public String getHost() {
    return host;
  }

  /**
   * Returns authenticator.
   */
  public Authenticator getAuthenticator() {
    return authenticator;
  }

  /**
   * Returns current port.
   */
  public int getPort() {
    return port;
  }
}