Updated Notify_popcornnotify (markdown)

Chris Caron 2020-08-03 10:02:22 -04:00
parent 994b4ec0c1
commit 495e963c21

@ -32,16 +32,19 @@ Send a PopcornNotify notification as an SMS:
# Assuming our {ApiKey} is abc123456 # Assuming our {ApiKey} is abc123456
# Assuming our {PhoneNo} - is in the US somewhere making our country code +1 # Assuming our {PhoneNo} - is in the US somewhere making our country code +1
# - identifies as 800-555-1223 # - identifies as 800-555-1223
apprise popcorn:///abc123456/18005551223 apprise -vv -t "Test Message Title" -b "Test Message Body" \
popcorn:///abc123456/18005551223
# the following would also have worked (spaces, brackets, # the following would also have worked (spaces, brackets,
# dashes are accepted in a phone no field): # dashes are accepted in a phone no field):
apprise popcorn:///abc123456/1-(800) 555-1223 apprise -vv -t "Test Message Title" -b "Test Message Body" \
popcorn:///abc123456/1-(800) 555-1223
``` ```
You can also send emails just as easily: You can also send emails just as easily:
```bash ```bash
# Assuming our {ApiKey} is abc123456 # Assuming our {ApiKey} is abc123456
# Assuming our {Email} is user@example.com # Assuming our {Email} is user@example.com
apprise popcorn:///abc123456/user@example.com apprise -vv -t "Test Message Title" -b "Test Message Body" \
popcorn:///abc123456/user@example.com
``` ```