mailtrain/shared/send-configurations.js

16 lines
267 B
JavaScript
Raw Normal View History

2018-04-22 07:00:04 +00:00
'use strict';
const MailerType = {
GENERIC_SMTP: 'generic_smtp',
ZONE_MTA: 'zone_mta',
AWS_SES: 'aws_ses'
2018-04-22 07:00:04 +00:00
};
function getSystemSendConfigurationId() {
return 1;
}
2018-04-22 07:00:04 +00:00
module.exports = {
MailerType,
getSystemSendConfigurationId
2018-04-22 07:00:04 +00:00
};