Impossible to send HTML emails on user registration
See original GitHub issueAt the moment there’s no way to send HTML-based emails on user registration on both HMAC and model-based backends, due to the way User.user_email(...)
is used (without option to passing additional **kwargs
or, at least, the html_message
).
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
How to send HTML formatted auto-activation email after user ...
I am having an issue on how to make the automated activation email that a user gets after registering on our site be...
Read more >Limitations of HTML Email | Mailchimp
Coding an HTML email isn't much different from coding a website was back in the late '90s. Learn about the limits of email...
Read more >Add html tag to emails - WordPress.org
We have tried every possible email send by the plugin like awaiting, ... go to your dashboard >> user registration >> settings >>...
Read more >How to Send HTML Email in Gmail – 3 Easy Ways - GMass
Today, I'll show you how to create “HTML emails” and send them in Gmail. The benefit of doing so is that you can...
Read more >Send emails from a HTML Contact Form - YouTube
In this video I show you how to create a working contact form in HTML. This contact form will send emails from your...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Well, technically nothing, but I think HTML support should be a must-have feature for django-registration nowadays.
As explained in #50, as an example, to have plain-text activation emails without automatic link support could be a serious usability and logical issue!
At the same time, requiring the developer to override every time the
ActivationView
for such a common feature is very annoying and inefficient.Finally, there is code redundancy among backends that could be removed as shown in #53.
@ubernostrum just wandering is django-register supports html template for emails sending out now? From technical view point, this is tedious and not adding a lot value. But from business view point, this is a must. As a developer, we always get request to send out nice activation email, confirmation email etc to clients which is only available with html email template instead of txt. I think it is a must for this library.