How to setup smtp email in production

(for JUNIPER release)
Edited the following properties inside /edx/etc/lms.yml and /edx/etc/studio.yml
(Used AWS SES for email)

“DEFAULT_FROM_EMAIL”: “myaccount@gmail.com”,
“EMAIL_BACKEND”: “django.core.mail.backends.smtp.EmailBackend”,
“EMAIL_HOST”: “smtp.gmail.com”,
“EMAIL_PORT”: 587,
“EMAIL_USE_TLS”: true,
“EMAIL_HOST_PASSWORD”: “emailpassword”,
“EMAIL_HOST_USER”: “myaccount@gmail.com”,

Restarted open edx -
/edx/bin/supervisorctl restart lms cms edxapp_worker: