Block "noreply" emails from subscribing?

Is there a wildcard plugin (or php code mod) for emails containing noreply in the address? Would like to prevent all submissions with the noreply (or any other keyword) in the email from being added to MySQL.

Thanks!
-Bob

@bobafifi The prevent disposable email addresses plugin does something similar but for domains https://resources.phplist.com/plugin/preventdisposable

You could use that as a base and add validation of the user part of the email address. You would need to modify the isDisposable() function at line 160, and add a set of user parts that are to be rejected.

Thanks Duncan! I’ve looked at the plugin. I was thinking more along the lines of a simple string match than email validation. For example, like being discussed here: