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);
}