Updated Notify_email (markdown)

Chris Caron 2020-08-03 09:42:00 -04:00
parent 9c15e01edd
commit a11526d327

@ -85,14 +85,14 @@ Send a email notification to our hotmail account:
# It's really easy if you're using a built in provider # It's really easy if you're using a built in provider
# Built-In providers look after handling the little details such as # Built-In providers look after handling the little details such as
# the SMTP server, port, enforcing a secure connection, etc # the SMTP server, port, enforcing a secure connection, etc
apprise -t "Test Message Title" -b "Test Message Body" \ apprise -vv -t "Test Message Title" -b "Test Message Body" \
mailto:///example:mypassword@hotmail.com mailto:///example:mypassword@hotmail.com
# Send an email to a custom provider: # Send an email to a custom provider:
# Assuming the {domain} is example.com # Assuming the {domain} is example.com
# Assuming the {userid} is george # Assuming the {userid} is george
# Assuming the {password} is pass123 # Assuming the {password} is pass123
apprise -t "Test Message Title" -b "Test Message Body" \ apprise -vv -t "Test Message Title" -b "Test Message Body" \
mailto://george:pass123@example.com mailto://george:pass123@example.com
# The above URL could also have been written like: # The above URL could also have been written like:
@ -103,7 +103,7 @@ apprise -t "Test Message Title" -b "Test Message Body" \
# Assuming the {domain} is example.com # Assuming the {domain} is example.com
# Assuming the {userid} is george@example.com # Assuming the {userid} is george@example.com
# Assuming the {password} is pass123 # Assuming the {password} is pass123
apprise -t "Test Message Title" -b "Test Message Body" \ apprise -vv -t "Test Message Title" -b "Test Message Body" \
"mailto://example.com?user=george@example.com&password=pass123" "mailto://example.com?user=george@example.com&password=pass123"
# Note that the ampersand (&) that is used in the URL to separate # Note that the ampersand (&) that is used in the URL to separate