Hi,
At the moment the default control rule only checks if the unsubscription link exists and then gives a warning in the log but user can still send the delivery.
Is there a way to modify this and stop the send completely like the subject line control rule?
Thanks!
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
You can duplicate the typology rule which comes with ACS.
Then replace logWarning by logError in the code
...
Views
Replies
Total Likes
You can duplicate the typology rule which comes with ACS.
Then replace logWarning by logError in the code
Thanks @ramon_bisswanger! I have found that out after checking the codes in Check subject but now my problem is that I can't seem to edit the codes or type in anything in the codes section. I have reached out to Adobe support but haven't gotten any response.
I thought it might be my access level on that instance but tried it on other instance too. Still I was not able to make any edit inside the code editor.
Do you have any idea why?
Views
Replies
Total Likes
Hm, could be that this is disabled in the UI.
You can try exporting it in a package, modify it in the XML file and then reimport it.
Views
Replies
Total Likes
Thanks @ramon_bisswanger! The import works.
Views
Replies
Total Likes
Views
Replies
Total Likes
As Ramon mentioned, you can duplicate check unsubscription control rule and change logWarning link to logError
if (delivery.content.email.length > 1) {
logWarning(sg.missingOptoutTextMultivariant(emailContent.variant));
}
else {
logError(sg.missingOptoutText());
}
Views
Likes
Replies