I have a models like so
from django.db import models
# Create your models here.
class Text(models.Model):
name = models.CharField(max_length=100, unique=True)
number = models.IntegerField(default=0)
def __unicode__(self):
return self.name
i want to be able to send bulk sms to some contacts
How do i go about linking this with kannel which is a free gateway