added code to allow failed messages from bad content url
This commit is contained in:
parent
3a2d1512ab
commit
cb4e3c76d3
2 changed files with 39 additions and 12 deletions
|
@ -53,7 +53,13 @@ const CampaignMessageStatus = {
|
|||
COMPLAINED: 4,
|
||||
SCHEDULED: 5,
|
||||
|
||||
MAX: 5
|
||||
MAX: 5,
|
||||
FAILED: 6
|
||||
};
|
||||
|
||||
const CampaignMessageErrorCode = {
|
||||
RETRY: 0,
|
||||
NORETRY: 1
|
||||
};
|
||||
|
||||
|
||||
|
@ -90,5 +96,6 @@ module.exports = {
|
|||
CampaignStatus,
|
||||
campaignOverridables,
|
||||
CampaignMessageStatus,
|
||||
CampaignMessageErrorCode,
|
||||
getSendConfigurationPermissionRequiredForSend
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue