-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
47 lines (41 loc) · 1.13 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var Q = require('q');
var _ = require('lodash');
var nodemailer = require("nodemailer");
module.exports = function(options) {
var exec = function(alert, alertConfig, e) {
var deferred = Q.defer();
var transport = nodemailer.createTransport("SMTP", {
service: options.service,
auth: options.auth
});
var content = [
"Alert Notification for <b>"+alert.eventName+"</b>"
].join("<br/>\n");
transport.sendMail({
from: options.from,
to: alertConfig.to,
subject: "Reportr - Alert - "+alert.eventName,
text: "",
html: content
}, function(error, response){
if (error) {
deferred.reject(error);
} else {
deferred.resolve();
}
});
return deferred.promise;
};
return {
id: "mail",
title: "Mail",
execute: exec,
options: {
to: {
type: "text",
label: "To",
help: "Addresses separated by commas"
}
}
};
};