24 lines
508 B
JavaScript
Executable File
24 lines
508 B
JavaScript
Executable File
const Component = require(`${appPath}/core/component`);
|
|
const emailHeader = new Component('email-header');
|
|
const emailFooter = new Component('email-footer');
|
|
|
|
module.exports = {
|
|
name: 'campaign-metrics',
|
|
|
|
components: {
|
|
'email-header': emailHeader.build(),
|
|
'email-footer': emailFooter.build()
|
|
},
|
|
props: {
|
|
clientId: {
|
|
required: true
|
|
},
|
|
from: {
|
|
required: true
|
|
},
|
|
to: {
|
|
required: true
|
|
}
|
|
}
|
|
};
|