12 lines
No EOL
152 B
JavaScript
12 lines
No EOL
152 B
JavaScript
'use strict';
|
|
|
|
const MailerType = {
|
|
GENERIC_SMTP: 0,
|
|
ZONE_MTA: 1,
|
|
AWS_SES: 2,
|
|
MAX: 3
|
|
};
|
|
|
|
module.exports = {
|
|
MailerType
|
|
}; |