Re: Verify Emails

2018-04-16 Thread Hanne Moa
If you do your own email-sending code you can break off the sending after the server sends "RCPT', that'll work regardless. On 7 April 2018 at 14:27, 'Anthony Flury' via Django users < django-users@googlegroups.com> wrote: > why not use an email validator provided by Django ? > >

Re: Verify Emails

2018-04-07 Thread 'Anthony Flury' via Django users
why not use an email validator provided by Django ? https://docs.djangoproject.com/en/2.0/ref/validators/#emailvalidator The problem with the pypi module is that to validate that an email exists it simply looks for server in DNS (which is slightly better than the Django validator), but that

Re: Verify Emails

2018-04-07 Thread Jani Tiainen
Hi, Nothing prevents you to create django validator that does use that package. Including functionality that package provides would add more dependencies to Django (pyDNS) which greatly reduces chances to get existence verification into Django itself. And Django already has email validator

Verify Emails

2018-04-07 Thread Samuel Muiruri
There's a python package for validating emails exists "validate_emails" https://pypi.python.org/pypi/validate_email think it would be useful to include it's features inside django so you can parse if emails exists before sending so you only send emails to those emails that *do *exists and also use