From 2d33935e10391643f7fbe64687e0a193ccafcd78 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 17 Sep 2022 11:30:11 -0400 Subject: [PATCH] SMSEagle message limit changed from 160 to 1200 chars (#666) --- apprise/plugins/NotifySMSEagle.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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