├── .gitignore ├── .replit ├── LICENSE ├── README.md ├── bot.py ├── keep_alive.py ├── poetry.lock ├── pyproject.toml └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.replit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/.replit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/bot.py -------------------------------------------------------------------------------- /keep_alive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/keep_alive.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gg2001/EmailBot/HEAD/requirements.txt --------------------------------------------------------------------------------