Skip to content

Instantly share code, notes, and snippets.

@isouzasoares
Created November 1, 2013 13:01
Show Gist options
  • Save isouzasoares/7265083 to your computer and use it in GitHub Desktop.
Save isouzasoares/7265083 to your computer and use it in GitHub Desktop.
def emails_validate(email):
emails_list = []
for i in email:
try:
validate_email(i.strip())
emails_list.append(i)
except Exception, e:
pass
return emails_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment