Defines the max length for an email address
The maximum length of an email address is 254 characters. RFC 3696 specifies a total length of 320 characters, but mentions that addresses longer than 256 characters are not normally useful. Erratum 1690 was then released which corrected this value to 254 characters.
http://tools.ietf.org/html/rfc3696#section-3
http://www.rfc-editor.org/errata_search.php?rfc=3696&eid=1690
const EMAIL_MAX_LENGTH = 254;
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Render!Element!Email.php/constant/Email::EMAIL_MAX_LENGTH/8.1.x