mirror of https://github.com/caronc/apprise
Twilio SMS Message limit 160 characters
parent
e992d02bb4
commit
6a45ed997c
|
@ -23,7 +23,7 @@
|
||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
# THE SOFTWARE.
|
# THE SOFTWARE.
|
||||||
|
|
||||||
# To use this service you will need a Twillio account to which you can get your
|
# To use this service you will need a Twilio account to which you can get your
|
||||||
# AUTH_TOKEN and ACCOUNT SID right from your console/dashboard at:
|
# AUTH_TOKEN and ACCOUNT SID right from your console/dashboard at:
|
||||||
# https://www.twilio.com/console
|
# https://www.twilio.com/console
|
||||||
#
|
#
|
||||||
|
@ -86,7 +86,7 @@ class NotifyTwilio(NotifyBase):
|
||||||
'{sid}/Messages.json'
|
'{sid}/Messages.json'
|
||||||
|
|
||||||
# The maximum length of the body
|
# The maximum length of the body
|
||||||
body_maxlen = 140
|
body_maxlen = 160
|
||||||
|
|
||||||
# A title can not be used for SMS Messages. Setting this to zero will
|
# A title can not be used for SMS Messages. Setting this to zero will
|
||||||
# cause any title (if defined) to get placed into the message body.
|
# cause any title (if defined) to get placed into the message body.
|
||||||
|
|
Loading…
Reference in New Issue