diff --git a/apprise/plugins/NotifySMSEagle.py b/apprise/plugins/NotifySMSEagle.py index b8840a8f..157d58be 100644 --- a/apprise/plugins/NotifySMSEagle.py +++ b/apprise/plugins/NotifySMSEagle.py @@ -90,7 +90,9 @@ class NotifySMSEagle(NotifyBase): notify_path = '/jsonrpc/sms' # The maxumum length of the text message - body_maxlen = 160 + # The actual limit is 160 but SMSEagle looks after the handling + # of large messages in it's upstream service + body_maxlen = 1200 # The maximum targets to include when doing batch transfers default_batch_size = 10