Custom Spam Words

Custom Spam Words

Custom spam words let you block submissions that contain specific words. You can specify a comma-separated list of (up to a 100) words in your form's settings, under custom spam words

To integrate Google Custom Spam Words into your form endpoint, follow these steps:

  1. Login to Formzillion App (opens in a new tab)
  2. Create a form or select a form to which you want to add custom spam words.
  3. Navigate to form's settings, select Spam Filtering in the sidebar.
  4. Add custom spam words in the below input field.

Example

<html lang="en">
  <head>
    <title>FormZillion - Custom Spam Words</title>
  </head>
  <body>
    <form id="form" action="http://app.formzilliom.com/f/{form_id}" method="POST" >
      <label for="email">Enter your email</label>
      <input id="email" type="email" placeholder="Enter Email Address" name="email" />
      <label for="name">Full Name</label>
      <input id="name" type="text" placeholder="Enter your FullName" name="name" />
      <input type="checkbox" name="Paste your custom honeypot here" style="display:none" autocomplete="off"/>
      <button id="button" type="submit" >Submit</button>
    </form>
  </body>
</html>
ℹ️