From e59f864c41860acdde4ba1171519e6542feb47e6 Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Fri, 31 Jul 2020 23:13:38 -0400 Subject: [PATCH] Updated Notify_d7networks (markdown) --- Notify_d7networks.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Notify_d7networks.md b/Notify_d7networks.md index 407e6d5..f376e16 100644 --- a/Notify_d7networks.md +++ b/Notify_d7networks.md @@ -11,8 +11,8 @@ After you've established your account you can get your api login credentials (bo ### Syntax Valid syntaxes are as follows: -* **d7sms**://**{user}**:**{password}**@/**{PhoneNo}** -* **d7sms**://**{user}**:**{password}**@**{PhoneNo1}**/**{PhoneNo2}**/**{PhoneNoN}** +* `d7sms://{user}:{password}@/{PhoneNo}` +* `d7sms://{user}:{password}@/{PhoneNo1}/{PhoneNo2}/{PhoneNoN}` ### Parameter Breakdown | Variable | Required | Description @@ -31,9 +31,11 @@ Send a D7 Network Notification as an SMS: # Assuming our {password} is appriseIsAwesome # Assuming our {PhoneNo} - is in the US somewhere making our country code +1 # - identifies as 800-555-1223 -apprise d7sms://l2g:appriseIsAwesome@18005551223 +apprise -t "Test Message Title" -b "Test Message Body" \ + d7sms://l2g:appriseIsAwesome@18005551223 # the following would also have worked (spaces, brackets, # dashes are accepted in a phone no field): -apprise d7sms://l2g:appriseIsAwesome@1-(800) 555-1223 +apprise -t "Test Message Title" -b "Test Message Body" \ + d7sms://l2g:appriseIsAwesome@1-(800) 555-1223 ``` \ No newline at end of file