I have an automation that takes email signups from a landing page and sends it to my ESP.
I need to filter out certain emails that contain spam domains. The best set up I found was a filter as seen in the image below… but its tedious and requires multiple OR filters. Is there any way to do this where all the emails I want blocked are in one filter?
@Kevin13
I would suggest use filter with does not contains operator (go for case-insensitive), and put all the domains comma separated.
So only those emails will go in flow which does not contain the domain in your list
Your filter will become
email
does not cotains
vtext.com, txt.att.net,…so on
Hey, I did just that and the tested signing up with a blocked domain, and it still went through… doesn’t appear to block it.