List<String> emails = m_scheduledManager.queryEmailsBySchReportId(report.getId());
AlertMessageEntity message = new AlertMessageEntity(domain, title, "ScheduledJob", content, emails);
boolean result = m_sendManager.sendAlert(AlertChannel.MAIL, message);
insertMailLog(report.getId(), content, title, result, emails);
t.addData(emails.toString());
t.setStatus(Transaction.SUCCESS);
} catch (Exception e) {
Cat.logError(e);
t.setStatus(e);
} finally {