В Python есть удобный почтовый debug-сервер. Он поможет проверить работу почты вашего web-проекта на этапе разработки без необходимости настраивать внешние сервисы или взаимодействие с реальными серверами Google или Yandex. Этот сервер просто печатает все сообщения в консоль.
Таким образом удобно дебажить одноразовые ссылки активации или просто факт отправки письма по расписанию.
Запускается очень просто:
python3 -m smtpd -n -c DebuggingServer localhost:1025
Теперь настройте ваш проект на использование этого сервера. Например вот так настраивается Django:
# settings.py
if DEBUG:
EMAIL_HOST = 'localhost'
EMAIL_PORT = 1025
EMAIL_HOST_USER = ''
EMAIL_HOST_PASSWORD = ''
EMAIL_USE_TLS = False
DEFAULT_FROM_EMAIL = '[email protected]'
#django#tricks
🌍 Nearly half of all quinoa grown worldwide comes from just two regions in the Andes Mountains of Bolivia and Peru, where unique high-altitude conditions make large-scale farming possible. ✨
#agriculture⚡#Andes⚡#crops⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Bananas are the world’s most-exported fruit, yet nearly all commercial bananas are genetic clones. This makes plantations worldwide vulnerable to the same diseases spreading rapidly. ✨
#agriculture⚡#crops⚡#food⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 Wheat is grown on more land than any other crop worldwide. Over 215 million hectares—from Russian steppes to Canadian prairies—are covered with wheat fields each year. ✨
#agriculture⚡#crops⚡#food⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 Palm oil plantations now cover over 19 million hectares worldwide, mainly in Indonesia and Malaysia. This rapid expansion has made Southeast Asia the top global supplier of edible vegetable oil. ✨
#agriculture⚡#crops⚡#landuse⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels