From 6a45ed997ce05c3a3bbd36e4330dbce782256d80 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Mon, 9 Dec 2019 06:57:36 -0500 Subject: [PATCH] Twilio SMS Message limit 160 characters --- apprise/plugins/NotifyTwilio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apprise/plugins/NotifyTwilio.py b/apprise/plugins/NotifyTwilio.py index ec78e46e..4a2b9a77 100644 --- a/apprise/plugins/NotifyTwilio.py +++ b/apprise/plugins/NotifyTwilio.py @@ -23,7 +23,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # 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: # https://www.twilio.com/console # @@ -86,7 +86,7 @@ class NotifyTwilio(NotifyBase): '{sid}/Messages.json' # 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 # cause any title (if defined) to get placed into the message body.