В 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
📣Tonhub 2.3.4 Update Introduces DEX Integration
Tonhub 2.3.4 is now available, featuring integration with #DEXDedust.io, allowing users to buy, sell, or exchange #TON blockchain tokens directly within the wallet without additional fees. #DeDust#Tonhub
⚡️Boost | 🌐Twitter
💳 Tonhub non-custodial wallet launched a Visa debit card
Tonhub has launched a Visa debit card, allowing users to make payments directly from their $TON or $USDT balances. Available for European ID holders, the card offers minimal fees (1.5% per transaction) and supports global payments, including SEPA, SWIFT, Apple Pay, and Google Pay.
Tonhub plans to expand access to CIS, Latin America, and the Middle East by 2025 and integrate with wallets like TrustWallet. With accounts managed via smart contracts on the TON blockchain, users retain full control over their funds.
Learn more at Tonhub’s website.
#TON#SWIFT#ApplePay#Web3#GooglePay#Tonhub#USDT