From 33829b258e01427244c2d00752a9ab7da5c62576 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 17 Dec 2023 14:08:40 -0500 Subject: [PATCH] Created Notify_sms_manager (markdown) --- Notify_sms_manager.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Notify_sms_manager.md diff --git a/Notify_sms_manager.md b/Notify_sms_manager.md new file mode 100644 index 0000000..f5f52b5 --- /dev/null +++ b/Notify_sms_manager.md @@ -0,0 +1,34 @@ +## SMS Manager Notifications + +* **Source**: https://smsmanager.cz +* **Icon Support**: No +* **Message Format**: Text +* **Message Limit**: 160 Characters per message + +### Account Setup +Sign up for SMS Manager [from here](https://smsmanager.cz). You can access your API Key from the management section from your account. + +### Syntax +Valid syntax is as follows: +* `smsmgr://{apikey}@/{toPhoneNo}` +* `smsmgr://{apikey}@/{toPhoneNo1}/{toPhoneNo2}/{toPhoneNoN}` + +`smsmanager://` can also be used as an alias to `smsmgr://` if you choose. + +### Parameter Breakdown +| Variable | Required | Description +| --------------- | -------- | ----------- +| apikey | Yes | The API Key associated with your SMS Manager Account. +| to | **\*No** | A phone number and/or group you wish to send your notification to. You can use comma's to separate multiple entries if you wish. This is an alias to `targets`. +| from | **\*No** | This requires approval from the Administrator and provides a `sender` option in the payload. It can not exceed 11 characters according to the documentation. You may also use `?sender=` to set this same value. +| batch | No | Send multiple specified notifications in a single batch (1 upstream post to the end server). By default this is set to `no`. +| gateway | No | SMS Manager supports the following gateway settings: `high`, `economy`, `low`, and `direct`. By default this is set to `high` if not otherwise specified. + +#### Example +Send a SMS Manager Message: +```bash +# Assuming our {apikey} is hard-to-guess +# Assuming our {PhoneNo} we wish to notify is +134-555-1223 +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + smsmgr://hard-to-guess@+134-555-1223 +``` \ No newline at end of file