cfc603 / django-twilio-sms-models

BSD 3-Clause "New" or "Revised" License
3 stars 1 forks source link

Response settings #3

Closed cfc603 closed 8 years ago

cfc603 commented 8 years ago

Currently the only way to setup response messages is through entries to the Action & Response models. For more complex systems, this is probably the best setup, however for quick sites, it may be best to have a setting such as the following:

DJANGO_TWILIO_SMS_RESPONSES = {
    'STOP': 'Your request to stop messages has been received.',
    'START': 'Your request to receive messages has been received.',
    ...
}