Skip to content

Instantly share code, notes, and snippets.

@zl4bv
Last active December 4, 2023 05:43
Show Gist options
  • Save zl4bv/14ec02ad472ce577854f43efaa913b9d to your computer and use it in GitHub Desktop.
Save zl4bv/14ec02ad472ce577854f43efaa913b9d to your computer and use it in GitHub Desktop.
Reject NPS surveys before they reach your inbox
require ["comparator-i;ascii-numeric", "reject"];
/**
* Emails containing Net Promoter Score surveys
*/
if allof (
header :comparator "i;unicode-casemap" :contains "Subject" ["How likely are you to recommend", "How did we do?", "how was your recent delivery?", "Two Quick Questions", "Tell us how we did!"])
{
reject "NPS surveys are not accepted";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment