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