Package com.elastisys.scale.commons.net.smtp

Examples of com.elastisys.scale.commons.net.smtp.SmtpSender


          this.sendSettings.getRecipients(), alert);
      SmtpMessage email = new SmtpMessage(
          this.sendSettings.getRecipients(),
          this.sendSettings.getSender(),
          this.sendSettings.getSubject(), alertMessage, UtcTime.now());
      new SmtpSender(email, this.smtpServerSettings).call();
    } catch (Exception e) {
      LOG.error(String.format(
          "failed to send alert message: %s\nAlert message was: %s",
          e.getMessage(), alertMessage), e);
    }
View Full Code Here

TOP

Related Classes of com.elastisys.scale.commons.net.smtp.SmtpSender

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.