В 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
#FIO/USDT analysis :
#FIO is in an uptrend, forming higher highs (HHs) and higher lows (HLs) while trading above the 200 EMA. The price has broken out and retested the previous swing high resistance levels. It is expected to bounce back from this point and continue its bullish momentum to test the recent swing high.
TF : 1D
Entry : $0.0305
Target : $0.0417
SL : $0.0270
#FIO/USDT analysis :
#FIO is currently in an uptrend, forming higher highs (HHs) and higher lows (HLs), while finding support above the trendline. The price is anticipated to rebound from the current level to sustain its bullish momentum and test new highs.
TF : 4h
Entry : $0.0259
Target : $0.0300
SL : $0.0238
#FIO/USDT analysis :
#FIO is currently experiencing a decline from the resistance zone following rejections in that region. It is anticipated to maintain its downward momentum and possibly test previous lows.
TF : 4H
Entry : $0.0198
Target : $0.0162
SL : $0.0210