Email verification in Django + Djoser

2024-04-10 Thread Okkert Joubert
I have a register page in my django app and I am using djoser for the end point to create and users etc, when I register with an email ending in .com (e.g. gmail.com) it works but when I enter an email ending with .co.za it does not work -- You received this message because you are subscribed

Re: Email verification

2022-02-25 Thread Rushikesh Chavan
ygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in-django> > > Am Mi., 23. Feb. 2022 um 16:34 Uhr schrieb Rushikesh Chavan < > rushijs...@gmail.com>: > >> I am new to django, i am working on one project which requires a feature >> of email verificat

Re: Email verification

2022-02-23 Thread Sebastian Jung
gmail.com>: > I am new to django, i am working on one project which requires a feature > of email verification , how do I do it? Like , I want to send the email to > the user who registered on my site and give one link in this mail which > will verify the user > > -- > You

Re: Email verification

2022-02-23 Thread Sangeeth Joseph
>> I am new to django, i am working on one project which requires a feature >> of email verification , how do I do it? Like , I want to send the email to >> the user who registered on my site and give one link in this mail which >> will verify the user >> >> -- &

Re: Email verification

2022-02-23 Thread Abubakar Siddique
You can use djoser On Wed, Feb 23, 2022, 8:35 PM Rushikesh Chavan wrote: > I am new to django, i am working on one project which requires a feature > of email verification , how do I do it? Like , I want to send the email to > the user who registered on my site and give one link in

Re: Email verification

2022-02-23 Thread Antonis Christofides
You can try django-registration-redux <https://django-registration-redux.readthedocs.io/en/latest/>. Regards, Antonis On 23/02/2022 17.10, Rushikesh Chavan wrote: I am new to django, i am working on one project which requires a feature of email verification  , how do I do it? Like ,

Email verification

2022-02-23 Thread Rushikesh Chavan
I am new to django, i am working on one project which requires a feature of email verification , how do I do it? Like , I want to send the email to the user who registered on my site and give one link in this mail which will verify the user -- You received this message because you are

Re: Add user email verification to custom user model

2021-03-12 Thread Manuel Buri
Thank you very much for your help. I made it work! Please let me know if I need to explain it to someone else. Best wishes, Manuel Manuel Buri T: +41 79 933 01 11 M: manuel.b...@gmail.com W: www.manuelburi.com On Tue, 9 Mar 2021 at 17:54, Kasper Lau

Re: Add user email verification to custom user model

2021-03-09 Thread Kasper Laudrup
On 09/03/2021 17.22, Gabriel Araya Garcia wrote: Your ask is not clear,..What is wrong ? What is the error message? If you need validate the email format, here is one javascript example : Actually, it is far from trivial or close to impossible to correctly validate an email address using, eg

Re: Add user email verification to custom user model

2021-03-09 Thread Kasper Laudrup
On 09/03/2021 17.37, Manuel Buri wrote: And know I would like to implement an email verification step that sets the user to active when verified using allauth django package. But I do not know how to do it... https://studygyaan.com/django/how-to-signup-user-and-send-confirmation-email-in

Re: Add user email verification to custom user model

2021-03-09 Thread Manuel Buri
ermissons def has_perm(self, perm, obj=None): return self.is_admin # Does this user have permission to view this app? (ALWAYS YES FOR SIMPLICITY) def has_module_perms(self, app_label): return True And know I would like to implement an email verification step that sets the user

Re: Add user email verification to custom user model

2021-03-09 Thread Gabriel Araya Garcia
"); document.getElementById("correo").value = ""; } } } Regards, Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos Santiago of Chile El mar, 9 mar 2021 a las 11:47, Manuel Buri () escribió: > Hi, I am a bit lost while trying to add user email verificati

Add user email verification to custom user model

2021-03-09 Thread Manuel Buri
Hi, I am a bit lost while trying to add user email verification step to my custom user model that is based on AbstractBaseUser. Did someone do that already or if not how should I do it differently? Thank you so much! -- You received this message because you are subscribed to the Google Groups

Re: How to test email-verification in django-registration-redux application on localhost?

2015-06-09 Thread Luis Zárate
Put SITE_ID = 1 in your settings file to fix this error 2015-06-09 7:01 GMT-06:00 akshat : > You're using the Django "sites framework" without having set the SITE_ID > setting. Create a site in your database and set the SITE_ID setting or pass a > request to Site.objects.get_current() to fix

How to test email-verification in django-registration-redux application on localhost?

2015-06-09 Thread akshat
I have made an django app which uses Django-Registration-redux application to registration and email verification of users.I am using 'Sites' framework also.How ever when I click register button email is not sent but instead I get this error message - You're using the Django &