Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
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!
Gelöst! Gehe zu Lösung.
Anhand von Themen werden Community-Inhalte kategorisiert und Sie können so relevanten Inhalt besser finden.
Zugriffe
Antworten
Likes gesamt
You can duplicate the typology rule which comes with ACS.
Then replace logWarning by logError in the code
...
Zugriffe
Antworten
Likes gesamt
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?
Zugriffe
Antworten
Likes gesamt
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.
Zugriffe
Antworten
Likes gesamt
Thanks @ramon_bisswanger! The import works.
Zugriffe
Antworten
Likes gesamt
Zugriffe
Antworten
Likes gesamt
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());
}
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten