trnc
trnc

Reputation: 21577

umlauts-domain in magento e-mail validation?

is there a way to allow umlauts-domains for e-mail addresses in Magento? when entering such domain at the moment, there's an validation error. where can i find those validation settings?

thanks in advance!

Upvotes: 2

Views: 777

Answers (1)

Jürgen Thelen
Jürgen Thelen

Reputation: 12737

I guess you'll need to change at least the appropriate Prototype and Zend validators to achieve this.

Scan js/prototype/validation.js for the pattern 'validate-email' to find the client-side validation part.

To locate the server-side validation part search the pattern Zend_Validate_EmailAddress in the file app/code/core/Mage/Eav/Model/Attribute/Data/Abstract.php.

Upvotes: 2

Related Questions