Send SMS from Django application using any SMS service provider just writing a single line of code.
- Support all standard SMS service provider
- SMS configuration from django admin panel
- There is SMS Log listing page
- You can also test SMS sending from admin panel
- Enough test coverage
pip install django-universal-smsINSTALLED_APPS = [
'django.contrib.admin',
'...',
'send_sms',
]python manage.py migrate- Go to admin panel by login with you admin credentials
- Find out SMS Settings menu under SEND SMS and click on it.
- There you'll see couple of fields to fill it up using SMS service provider credentials.
. - Carfefully compelete this part and save it.
Whenever you need to send SMS just use following code:
from send_sms.views import send_sms
send_sms(['mobile_number'], 'Your Message')For each successful sending SMS you can see the log from SMS Log under under SEND SMS menu.
Feel free to ask for the support over the email hizbul.ku[at]gmail.com.