salix/print/templates/email/sepa-core/sepa-core.js

26 lines
647 B
JavaScript
Raw Normal View History

2019-11-04 12:55:20 +00:00
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');
2019-11-04 12:55:20 +00:00
module.exports = {
name: 'sepa-core',
data() {
return {attachments};
},
2019-11-04 12:55:20 +00:00
components: {
'email-header': emailHeader.build(),
'email-footer': emailFooter.build(),
'attachment': attachment.build()
},
props: {
2020-05-22 13:20:55 +00:00
recipientId: {
required: true
},
companyId: {
required: true
}
2019-11-04 12:55:20 +00:00
}
};