from django.forms.fields import email_re

def is_valid_email(email):
    return True if email_re.match(email) else False