Metadata-Version: 2.4
Name: tryton-twilio
Version: 0.2.0
Summary: Send SMS from Tryton via Twilio
Project-URL: homepage, https://www.tryton.org/
Project-URL: changelog, https://code.tryton.org/contrib/tryton-twilio/-/blob/branch/default/CHANGELOG
Project-URL: forum, https://discuss.tryton.org/tags/twilio
Project-URL: issues, https://bugs.tryton.org/tryton-twilio
Project-URL: repository, https://code.tryton.org/contrib/tryton-twilio
Author: B2CK SRL
Author-email: Cédric Krier <cedric.krier@b2ck.com>
Maintainer-email: Cédric Krier <cedric.krier@b2ck.com>
License-Expression: GPL-3.0-or-later
License-File: COPYRIGHT
License-File: LICENSE
Keywords: SMS,tryton,twilio
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: Tryton
Classifier: Intended Audience :: Developers
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Requires-Dist: trytond>5.0
Requires-Dist: twilio
Description-Content-Type: text/x-rst

Tryton Twilio SMS Gateway
=========================

Twilio SMS Gateway for the Tryton application framework.

To use Twilio SMS Gateway, the trytond configuration must be modified to set in
the `twilio` section, the Twilio credential on `account`, `token` and `from`.
Here is an example the section::

    [twilio]
    account = ACXXXXXXXXXXXXXXXXX
    token = ACXXXXXXXXXXXXXXXXX
    from = +15555555555

To use Twilio gateway with the module `authentication_sms`, the trytond
configuration must be modified to set in the `authentication_sms`, the
`function` to `tryton_twilio.send_sms` or
`tryton_twilio.send_sms_transactional`.
Here is an example of the section::

    [authentication_sms]
    function = tryton_twilio.send_sms
