Hello community,
Reviewing the typology rules, we have found that the typology rule that comes by default in the system “Unqualified address” has nothing in the “Filter” section (I include screenshot), does this mean that it is not really doing anything or we are looking at something wrong?)
Thanks
Solved! Go to Solution.
Views
Replies
Total Likes
<attribute expr="AllNonNull3([../location/@zipCode], [../location/@city], [../@lastName])"
name="addrDefined"/>
case "email":
var aPart = str.split("@");
if (aPart.length === 2 && aPart[0].match(/^[\S]+$/) &&
aPart[1].match(/^([\w\-]+\.)+[\w\-]+$/)) {
return str.toLowerCase();
}
Thanks,
David
Views
Replies
Total Likes
Hi @LAR1985 ,
In Adobe Campaign Classic, a typology rule with an empty "Filter" section doesn't mean it's not doing anything; it means it's applying to all addresses that haven't already been assigned to another typology.
The "Unqualified address" typology rule is a default rule that acts as a catch-all. If an address doesn't match the criteria of any other typology rule, it's automatically assigned the "Unqualified address" typology. The absence of a filter ensures that this rule is applied to all remaining addresses after other, more specific rules have been processed.
Eg: You have 20 email addresses and three typology rules (let's call them Rule 1, Rule 2, and Rule 3). The "Unqualified address" rule is always the last rule processed.
Here's the step-by-step process:
And being assigned the "Unqualified address" typology does not automatically exclude an email address from being sent.
Thanks,
Jyoti
Views
Replies
Total Likes
Thank you very much @Jyoti_Yadav
I have understood how the filter works in the typology rule but then I have the doubt of how to see the logic that applies, in this case, how you have explained, the assigment to “Unqualified address”, I am not interested in this case, I would be interested what in your example would be the rules 1,2 and 3 of evaluation. I need to know the rules that excludes an email because I thought that the typology rule did.
I would need to know how the emails are excluded because of the format (I imagine that, bad-quality address do this). In this case, I can see that the filter also applies to every recipient but I can't see how it works either.
Thanks
Views
Replies
Total Likes
<attribute expr="AllNonNull3([../location/@zipCode], [../location/@city], [../@lastName])"
name="addrDefined"/>
case "email":
var aPart = str.split("@");
if (aPart.length === 2 && aPart[0].match(/^[\S]+$/) &&
aPart[1].match(/^([\w\-]+\.)+[\w\-]+$/)) {
return str.toLowerCase();
}
Thanks,
David
Views
Replies
Total Likes
Thank you very much @DavidKangni! It is now clear.
So I understand that these codes are not visible to an adobe campaign user, isn't it?
Thanks
Views
Replies
Total Likes
yes from typology, the codes are not visible but ACC is using the items I shared for validation.
Thanks,
David
Views
Replies
Total Likes