views:

106

answers:

1

how does it write.

code example please.

+1  A: 

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 has an implementation walkthrough.

Seth