26 lines
654 B
JavaScript
26 lines
654 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: 'client-debt-statement',
|
||
|
components: {
|
||
|
'email-header': emailHeader.build(),
|
||
|
'email-footer': emailFooter.build(),
|
||
|
'attachment': attachment.build()
|
||
|
},
|
||
|
data() {
|
||
|
return {attachments};
|
||
|
},
|
||
|
props: {
|
||
|
recipientId: {
|
||
|
required: true
|
||
|
},
|
||
|
from: {
|
||
|
required: true
|
||
|
}
|
||
|
}
|
||
|
};
|