From 7aacda2920c8729bf1fbf170868d8da51ee76dd2 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 20 Aug 2023 10:58:43 -0400 Subject: [PATCH] Created Notify_pushme (markdown) --- Notify_pushme.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Notify_pushme.md diff --git a/Notify_pushme.md b/Notify_pushme.md new file mode 100644 index 0000000..04f7b29 --- /dev/null +++ b/Notify_pushme.md @@ -0,0 +1,28 @@ +## PushMe Notifications +* **Source**: https://push.i-i.me/ +* **Icon Support**: No +* **Attachment Support**: No +* **Message Format**: Text +* **Message Limit**: 32768 Characters per message + +### Account Setup +You need to have an account with [PushMe](https://push.i-i.me/) and have downloaded the Phone App. + +### Syntax +Valid syntax is as follows: +* `pushme://{token}` + +### Parameter Breakdown +| Variable | Required | Description +| ----------- | -------- | ----------- +| token | Yes | This is the **push_key** associated with your PushMe Account +| status | No | Optionally include a small little ASCII string representing the notification status being sent (inline with it) by default this is set to `yes`. + +#### Example +Send a PushMe notification: +```bash +# Assuming our {token} (or {push_key}) is abc123 + +apprise -vv -t "Test Message Title" -b "Test Message Body" \ + pushme://abc123 +``` \ No newline at end of file