Replies: 3 comments 7 replies
-
Did you try it yet with some Gmail credentials and see if it connects to that? DEFAULT_FROM_EMAIL = (your Gmail address) Rerstart the webserver. |
Beta Was this translation helpful? Give feedback.
-
hi, Are you using the docker setup or the single server one? For the single server you have to put these setting on cms/local_settings.py, while on the dockerized setup on file deploy/docker/local_settings.py Make sure settings work, you may also try to login to the shell and make a test
Or if you're running the docker setup, bash into a container and do the same
|
Beta Was this translation helpful? Give feedback.
-
Getting a "Cannot reach CELERY_EMAIL_BACKEND django.core.mail.backends.smtp.EmailBackend" my new setup is @swiftugandan letsencrypt docker-compose . Error log posted below:
|
Beta Was this translation helpful? Give feedback.
-
Hi,
Thanks for such a fantastic application. I'm trying to setup SMTP to an e-mail server that accepts anonymous connections (Windows based) which requires e-mails to be sent from a certain sender address.
DEFAULT_FROM_EMAIL = '[email protected]'
EMAIL_HOST_PASSWORD = ''
EMAIL_HOST_USER = ''
EMAIL_USE_TLS = False
SERVER_EMAIL = DEFAULT_FROM_EMAIL
EMAIL_HOST = 'smtpserver.domain.com'
EMAIL_PORT = 25
ADMIN_EMAIL_LIST = ['[email protected]']
I have set the above setting and keep getting connection refused.
ConnectionRefusedError: [Errno 111] Connection refused
Any help would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions