0

I am in new Django framework. I want to send an e-mail. This is my setting.py file and I want to know what should I put at EMAIL_HOST, EMAIL_HOST_USER, EMAIL_HOST_PASSWORD fields. Could you explain what is this?

ALLOWED_HOSTS = []
EMAIL_HOST = ''
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_PORT = 587
EMAIL_USE_TLS = True
karthikr
  • 97,368
  • 26
  • 197
  • 188
dhiraj
  • 1

1 Answers1

1

Everything depend what email service you want to use. Example for GMAIL you can find here Python Django Gmail SMTP setup

Community
  • 1
  • 1
samitnuk
  • 13
  • 3