21 lines
No EOL
374 B
JavaScript
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
|
|
}; |