Components
Templates are managed using a single iCM Form App. Template data is saved to the iCM database in two encoded iCM Objects. A group of End Points handles the creation, retrieval, import and export of template data. A single End Point can be used to send all communications.
Component Type | Name |
---|---|
Form | COMMSTEMPLATEMANAGER |
End Point Group | goss.CommsTemplateManager |
Configuration End Point | config.[env].CommsTemplatemanager.getConfig |
Object Types | EMAILMANAGEMENT and EMAILTEMPLATES |
End Points
The CTM uses the standard GOSS End Point configuration structure.
The configuration End Point holds four settings.
function(params, credentials) {
let config = {};
config.sendEmail = true;
config.sendSMS = false;
config.emailWorker = '';
config.smsWorker = '';
return config;
}
Property | Type | Description |
---|---|---|
sendEmail | Boolean | true to enable emails |
sendSMS | Boolean | true to enable SMS messages |
emailWorker | String | The name of the email worker. An empty string will use the standard "email" worker |
smsWorker | String | The name of the SMS worker. An empty string will use the standard "sms" worker |
Last modified on March 14, 2022