This question has been flagged
2 Replies
8941 Views
hi ,
i want to validate my field email , i want to get a popup error before saving the forum not after
and thx for help :)

def validate_mail(self):
if self.email:
match = re.match('^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$', self.email)
if match == None:
raise ValidationError('Not a valid E-mail ID')
Avatar
Discard
Best Answer

Hi,

Just go through this module for Validating the E-mail ID and see how it is done: https://apps.odoo.com/apps/modules/10.0/email_id_validation/


Thanks

Avatar
Discard
Best Answer
if not re.match('(\w+[.|\w])*@(\w+[.])*\w+', record.mail):
raise exceptions.ValidationError("Wrong mail")
Avatar
Discard