Last active
February 23, 2024 15:03
-
-
Save nskeip/2843522 to your computer and use it in GitHub Desktop.
Django SMTP settings for yandex_for_domain mail (pdd.yandex.ru)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EMAIL_HOST = 'smtp.yandex.ru' | |
EMAIL_HOST_USER = '[email protected]' | |
EMAIL_HOST_PASSWORD = 'password' | |
EMAIL_PORT = 587 | |
EMAIL_USE_TLS = True |
Последний конфиг рабочий, спасибо!
devel787, still working, thanks.
Still working)
Still working! ;)
In case you use http over SSL, then your settings should be:
EMAIL_HOST = 'smtp.yandex.ru' EMAIL_HOST_USER = '[email protected]' EMAIL_HOST_PASSWORD = 'password' EMAIL_PORT = 465 EMAIL_USE_TLS = False EMAIL_USE_SSL = True
I used this settings and it worked. Thnx!
still working!
The lastest config settings are fine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
devel787, все еще актуально, спасибо! Подтверждаю что конфиг работает.