Search code examples
djangodjango-registration

django-registration activation_email.txt


how does it write.

code example please.


Solution

  • The activation_email.txt is a django template which contains whatever you want, plus a link back to your site.

    Something like:

    To activate your account, go here: {{ site }}/accounts/activate/{{ activation_key }}/

    Take a look at the quick start in the docs folder (or read online here.)

    This site had an implementation walkthrough, but the link is dead now.