added code to allow failed messages from bad content url

This commit is contained in:
Eric Uldall 2019-10-31 16:52:19 -07:00
parent 3a2d1512ab
commit cb4e3c76d3
2 changed files with 39 additions and 12 deletions

View file

@ -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
};
};