String alertMessage = JsonUtils.toPrettyString(JsonUtils
.toJson(taggedAlert));
try {
LOG.debug("sending alert to {}: {}",
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) {