├── .gitattributes ├── .vscode └── launch.json ├── 1.0.0.zip ├── 1.0.0 ├── README.md ├── contents │ ├── company.txt │ ├── link.txt │ ├── smtp.txt │ └── words.txt ├── log.txt └── main.py ├── README.md └── source ├── __pycache__ └── main.cpython-311.pyc ├── compile.py ├── contents ├── company.txt ├── link.txt ├── smtp.txt └── words.txt └── main.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /1.0.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/1.0.0.zip -------------------------------------------------------------------------------- /1.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/1.0.0/README.md -------------------------------------------------------------------------------- /1.0.0/contents/company.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/1.0.0/contents/company.txt -------------------------------------------------------------------------------- /1.0.0/contents/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/1.0.0/contents/link.txt -------------------------------------------------------------------------------- /1.0.0/contents/smtp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1.0.0/contents/words.txt: -------------------------------------------------------------------------------- 1 | charge 2 | debit 3 | withdrawal 4 | -------------------------------------------------------------------------------- /1.0.0/log.txt: -------------------------------------------------------------------------------- 1 | 2023-12-30 15:13:14.126815 - [SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1006) 2 | -------------------------------------------------------------------------------- /1.0.0/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/1.0.0/main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/README.md -------------------------------------------------------------------------------- /source/__pycache__/main.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/source/__pycache__/main.cpython-311.pyc -------------------------------------------------------------------------------- /source/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/source/compile.py -------------------------------------------------------------------------------- /source/contents/company.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/source/contents/company.txt -------------------------------------------------------------------------------- /source/contents/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/source/contents/link.txt -------------------------------------------------------------------------------- /source/contents/smtp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/contents/words.txt: -------------------------------------------------------------------------------- 1 | charge 2 | debit 3 | withdrawal 4 | -------------------------------------------------------------------------------- /source/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hackeinstein/smtp-to-sms/HEAD/source/main.py --------------------------------------------------------------------------------