Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ktaranov/962c704841a0b3a2f8b1c1334cbcfee8 to your computer and use it in GitHub Desktop.
Save ktaranov/962c704841a0b3a2f8b1c1334cbcfee8 to your computer and use it in GitHub Desktop.
Django SMTP settings for yandex_for_domain mail (pdd.yandex.ru)
EMAIL_HOST = 'smtp.yandex.ru'
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'password'
EMAIL_PORT = 587
EMAIL_USE_TLS = True
@ktaranov
Copy link
Author

EMAIL_HOST = 'smtp.yandex.ru'
EMAIL_PORT = 587
EMAIL_HOST_USER = '[email protected]'
EMAIL_HOST_PASSWORD = 'password'
DEFAULT_FROM_EMAIL = '[email protected]'
EMAIL_USE_TLS = True

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment