Ghost/ghost/email-service/index.js
Simon Backx 4b4592630f
Added new email batch sending service (#15865)
fixes https://github.com/TryGhost/Team/issues/2284

New batch sending flow (still WIP). Logs the sent emails instead of actually sending them. Unit tests are coming in later commits.
2022-11-23 11:33:44 +01:00

9 lines
352 B
JavaScript

module.exports = {
EmailService: require('./lib/email-service'),
EmailController: require('./lib/email-controller'),
EmailRenderer: require('./lib/email-renderer'),
EmailSegmenter: require('./lib/email-segmenter'),
SendingService: require('./lib/sending-service'),
BatchSendingService: require('./lib/batch-sending-service')
};