October 12, 2023

Email Validation

Require that a column contains only valid email addresses

We now support validating email addresses at the column level. Developers can leverage this validation by using the "validate":"email" option within the template columns array. Check the docs for more details.

{
  "columns": [
    {
      "name": "Email",
      "required": true,
      "data_type": "string"
      "validations": [
        {
          "validate": "email"
        }
      ]
    }
  ]
}

What's Next?

We'll be adding many more validation options over the coming weeks. If you have any feedback or ideas for which validators we should prioritize next, reach out through our GitHub repository.

To the top
Background graphic with dots