Also, my explanation is really just a rephrasing of what you can find in 
the official docs: 
http://mezzanine.jupo.org/docs/user-accounts.html#account-approval. In that 
page you'll also find info about the more traditional "Click here to verify 
your account" approach, and details on Mezzanine's implementation of user 
accounts, which is pretty flexible and capable out of the box.

Lastly, remember you must have your email settings set correctly to be able 
to send notifications to your users and yourself. For example, you can use 
a Gmail account:
EMAIL_HOST_USER = 'exam...@gmail.com'
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_PASSWORD = 'GmailPassword'
EMAIL_PORT = 587
SERVER_EMAIL = EMAIL_HOST_USER

These go into settings.py and you only need to change your gmail address 
and password. Of course, other SMTP servers will work fine with their own 
settings.

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to