14 lines
232 B
JavaScript
14 lines
232 B
JavaScript
'use strict';
|
|
|
|
// Set module title
|
|
module.exports.title = 'Mailtrain integration (main)';
|
|
|
|
// Initialize the module
|
|
module.exports.init = (app, done) => {
|
|
|
|
process.send({
|
|
type: 'zone-mta-started'
|
|
});
|
|
|
|
done();
|
|
};
|