I just see users cant add e.g email that contain letters öäå and some others similar. This are very common letters in name etc so how can I add so this would work?
You need to add new regular expressions for these letters to the e-mail pattern :
const EMAIL_PATTERN = '/^([\w\-\.\+\%]*[\w])@((?:[A-Za-z0-9\-]+\.)+[A-Za-z]{2,})$/';
in the ow_utilities/validator.php file.