Updated Notify_d7networks (markdown)

Chris Caron 2023-06-17 14:56:57 -04:00
parent b7da200fe5
commit dc1999b903

@ -11,7 +11,7 @@ After you've established your account you can get your API Token from the API De
### Syntax
Valid syntax is as follows:
* `d7sms://{token}@/{PhoneNo}`
* `d7sms://{token}@{PhoneNo}`
* `d7sms://{token}@/{PhoneNo1}/{PhoneNo2}/{PhoneNoN}`
@ -31,10 +31,10 @@ Send a D7 Network Notification as an SMS:
# Assuming our {PhoneNo} - is in the US somewhere making our country code +1
# - identifies as 800-555-1223
apprise -vv -t "Test Message Title" -b "Test Message Body" \
d7sms://AJfkafjA4Baghkr0Zkjk@18005551223
"d7sms://AJfkafjA4Baghkr0Zkjk@18005551223"
# the following would also have worked (spaces, brackets,
# dashes are accepted in a phone no field):
apprise -vv -t "Test Message Title" -b "Test Message Body" \
d7sms://AJfkafjA4Baghkr0Zkjk@1-(800) 555-1223
"d7sms://AJfkafjA4Baghkr0Zkjk@1-(800) 555-1223"
```