forked from pencilblue/pencilblue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
email.js
executable file
·175 lines (156 loc) · 5.43 KB
/
email.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
/*
Copyright (C) 2015 PencilBlue, LLC
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
//dependencies
var NodeMailer = require('nodemailer');
var util = require('./util.js');
module.exports = function EmailServiceModule(pb) {
/**
* Service for sending emails.
*
* @module Services
* @class EmailService
* @constructor
*/
function EmailService(){}
/**
*
* @private
* @static
* @readonly
* @property DEFAULT_SETTINGS
* @type {Object}
*/
var DEFAULT_SETTINGS = Object.freeze({
from_name: pb.config.siteName,
from_address: '[email protected]',
verification_subject: pb.config.siteName+' Account Confirmation',
verification_content: '',
template: 'admin/elements/default_verification_email',
service: 'Gmail',
host: '',
secure_connection: 1,
port: 465,
username: '',
password: ''
});
/**
* Retrieves a template and sends it as an email
*
* @method sendFromTemplate
* @param {Object} options Object containing the email settings and template name
* @param {Function} cb Callback function
*/
EmailService.prototype.sendFromTemplate = function(options, cb){
var self = this;
var ts = new pb.TemplateService();
if (options.replacements) {
for(var key in options.replacements) {
ts.registerLocal(key, options.replacements[key]);
}
}
ts.load(options.template, function(err, data) {
var body = '' + data;
self.send(options.from, options.to, options.subject, body, cb);
});
};
/**
* Uses an HTML layout and sends it as an email
*
* @method sendFromTemplate
* @param {Object} options Object containing the email settings and template name
* @param {Function} cb Callback function
*/
EmailService.prototype.sendFromLayout = function(options, cb){
var self = this;
var layout = options.layout;
if (options.replacements) {
for(var key in options.replacements) {
layout.split('^' + key + '^').join(options.replacements[key]);
}
}
self.send(options.from, options.to, options.subject, layout, cb);
};
/**
* Sends an email
*
* @method send
* @param {String} from From name
* @param {String} to To email address
* @param {String} subject Email subject
* @param {String} body Email content
* @param {Function} cb Callback function
*/
EmailService.prototype.send = function(from, to, subject, body, cb) {
this.getSettings(function(err, emailSettings) {
if (util.isError(err)) {
throw err;
}
else if (!emailSettings) {
var err = new Error('No Email settings available. Go to the admin settings and put in SMTP settings');
pb.log.error(err.stack);
return cb(err);
}
var options = {
service: emailSettings.service,
auth:
{
user: emailSettings.username,
pass: emailSettings.password
}
};
if (emailSettings.service == 'custom') {
options.host = emailSettings.host,
options.secureConnection = emailSettings.secure_connection,
options.port = emailSettings.port;
}
var smtpTransport = NodeMailer.createTransport("SMTP", options);
var mailOptions = {
from: from || (emailSettings.from_name + '<' + emailSettings.from_address + '>'),
to: to,
subject: subject,
html: body
};
smtpTransport.sendMail(mailOptions, function(err, response) {
if (util.isError(err)) {
pb.log.error("EmailService: Failed to send email: ", err.stack);
}
smtpTransport.close();
cb(err, response);
});
});
};
/**
* Retrieves the email settings
*
* @method getSettings
* @param {Function} cb Callback function
*/
EmailService.prototype.getSettings = function(cb) {
var self = this;
pb.settings.get('email_settings', function(err, settings) {
cb(err, util.isError(err) || !settings ? EmailService.getDefaultSettings() : settings);
});
};
/**
* Retrieves the default email settings from installation
*
* @method getDefaultSettings
* @return {Object} Email settings
*/
EmailService.getDefaultSettings = function() {
return DEFAULT_SETTINGS;
};
//exports
return EmailService;
};