mailtrain/shared/send-configurations.js
2018-09-23 22:28:58 +02:00

21 lines
No EOL
374 B
JavaScript

'use strict';
const MailerType = {
GENERIC_SMTP: 'generic_smtp',
ZONE_MTA: 'zone_mta',
AWS_SES: 'aws_ses'
};
function getSystemSendConfigurationId() {
return 1;
}
function getSystemSendConfigurationCid() {
return 'system';
}
module.exports = {
MailerType,
getSystemSendConfigurationId,
getSystemSendConfigurationCid
};