python - django 1.8.6 - ModuleNotFoundError: No module named 'django_smtp_ssl' -




i bit stuck here working through, django example.

i keep getting error there no module names 'django_smtp_ssl.

here mail settings settings.py

email_host='smtp.gmail.com' email_host_user = 'xxx@gmail.com' email_host_password = '********' email_port=465 email_use_tls = true email_backend = 'django.core.mail.backends.smtp.emailbackend' 

command using in shell is:

send_mail('django mail', 'this email sent django', ‘123@msn.com', [‘123@msn.com'], fail_silently=false) 

it don't have package installed. try

pip install django-smtp-ssl 




wiki

Comments

Popular posts from this blog

Asterisk AGI Python Script to Dialplan does not work -

python - Read npy file directly from S3 StreamingBody -

kotlin - Out-projected type in generic interface prohibits the use of metod with generic parameter -