I have installed juniper.master on aws following the instructions in this blog: https://blog.lawrencemcdaniel.com/open-edx-installation/
Everything is up and running,except for the email sending.
I am not getting emails during signup and reset password.
What I’ve done:
- Edited the following properties inside lms.env.json and cms.env.json files, and set my email adress where emails are required( eg:- “DEFAULT_FEEDBACK_EMAIL”: “myaccount@gmail.com”,)
…
“EMAIL_BACKEND”: “django.core.mail.backends.smtp.EmailBackend”,
“EMAIL_HOST”: “smtp.gmail.com”,
“EMAIL_PORT”: 587,
“EMAIL_USE_TLS”: true,
… - Edited the following properties inside lms.auth.json and cms.auth.json files
“EMAIL_HOST_PASSWORD”: “emailpassword”,
“EMAIL_HOST_USER”: “myaccount@gmail.com”, - I restarted open edx
/edx/bin/supervisorctl restart lms
/edx/bin/supervisorctl restart cms
/edx/bin/supervisorctl restart edxapp_worker:
Am i missing something here?
Thanks in advance for your help!