18 lines
514 B
JavaScript
18 lines
514 B
JavaScript
|
const Component = require(`${appPath}/core/component`);
|
||
|
const emailHeader = new Component('email-header');
|
||
|
const emailFooter = new Component('email-footer');
|
||
|
const attachment = new Component('attachment');
|
||
|
const attachments = require('./attachments.json');
|
||
|
|
||
|
module.exports = {
|
||
|
name: 'credit-request',
|
||
|
components: {
|
||
|
'email-header': emailHeader.build(),
|
||
|
'email-footer': emailFooter.build(),
|
||
|
'attachment': attachment.build()
|
||
|
},
|
||
|
data() {
|
||
|
return {attachments};
|
||
|
},
|
||
|
};
|