is_valid_email
Test whether a value has valid email-address syntax.
Empty values and values of another type return false. This filter checks
syntax only; it does not verify that the address or domain exists.
For example:
{% if email|is_valid_email %}
The address has valid syntax.
{% endif %}