I feel silly, but I swear I've tried to fix this on my own and by checking 
the docs...

Working to deploy Mezzanine with Python 3.4 onto a Digital Ocean VPS. 
Trying to mimic the Fabric deploy the best I can, and have it set up with 
PostgresQL, Supervisord, Nginx, and Gunicorn. Everything seems to be 
working as expected so far.

The only hiccup is that I can't get the form to automatically send me 
emails. I've filled in the various settings via the admin panel, and I've 
added the following to settings.py (following Ross Laird's excellent guide 
<http://www.rosslaird.com/blog/customizing-mezzanine/>):

##############
# SEND EMAIL #
##############
# enable email via gmail
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'passwordsarefun'
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = '[email protected]'


Prior to changing all of these settings, I would get an error message when 
I tried to use the form to send an email. Now I get a success message 
following form submission, and I can see the entries under "View Entries" 
from the admin panel. I just never get an email. I don't get it. Is Google 
blocking me? Is there another program I was supposed to have installed and 
integrated? I feel bad clogging up the mailing list, as I bet it's 
something simple I'm missing, but I'm out of ideas on how to fix this.

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to