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