A simple tool to send SMS messages over the carrier's network from an Android phone using the Android Debug Bridge.
- ๐๏ธ Small (~121 lines)
- ๐ Pure Python
- ๐ Working with multiple devices
- ๐ Save SMS as Draft
- ๐ฅ Delete SMS after sending
Probably just for fun at first ๐. Secondly, for low-cost SMS marketing campaigns without any equipment or external services.
Firstly you will need to install Android Debug Bridge and Messages application from Google Play. Next, you will need to turn on Developer Options on your Android phone. After the Developer Options are enabled, turn on Stay Awake and USB Debugging. Finally, plug your phone into your computer using a USB cable, copy a message to the clipboard on your phone and check that you have enough credit to send SMS ๐ , so here we go! ๐.
- Clone the Repository
- Install this Package (
./setup.py install
) or install dependencies from Pipfile (pipenv install
)
bulk-sms --help # Show help and exit
echo "+380XXXXXXXXX\n+380XXXXXXXX1" | bulk-sms # Send multiple SMS, E.164 format
echo "+380XXXXXXXXX" | bulk-sms -d # Save SMS as Draft
echo "+380XXXXXXXXX" | bulk-sms -x # Delete SMS after sending
echo "+380XXXXXXXXX" | bulk-sms -s XXXXXXXXXXXXXX # Set device serial number
๐๐ First off, thanks for taking the time to contribute! ๐๐
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/awesome-feature
) - Commit your Changes (
git commit -m 'Add awesome feature'
) - Push to the Branch (
git push origin feature/awesome-feature
) - Open a Pull Request
Leave a โญ if you think this project is cool or useful for you.
bulk-sms
is licenced under the MIT License. See the LICENSE
for more information.