Text field that forces to enter a valid email address.
Attributes:
| Attribute | Examples | Description |
| name* | name="unique_field_name" | The field name. Needs to be unique in the form. Required. |
| value | value="[email protected]" value="{user.email}" value="{field.email_123}" | The initial field value. Optional. |
| placeholder | value="Insert email here." | Text displayed when the field has no value. Optional. |
| min | min="10" | Minimum characters length allowed. Optional. NOTE: Shortcut of minlength attribute. |
| max | max="100" | Maximum characters length allowed. Optional. NOTE: Shortcut of maxlength attribute. |
| pattern | pattern="Regular expression" pattern="^.+@gmail\.com$" pattern="^.+@outlook\.com$" | A regular expression the field value should match. Optional. |
This field also supports common HTML attributes, as well as label & description attributes.