My django service is a pure newsletter service. The user need not have a password. All the user needs to do is provide an email address. We will be sending the email periodically.
So the user does not have to provide the username and password. But having an email confirmation step is important.
The django-newsletter app requires that the user be registered. All the well-known user registration apps require a password and often the username also.
Is there a way to add users from email addresses without needing password or username?
Is there a better plugin for newsletter that is not linked to the core user data?