diff --git a/Notify_email.md b/Notify_email.md index 99a523c..707f20d 100644 --- a/Notify_email.md +++ b/Notify_email.md @@ -85,14 +85,14 @@ Send a email notification to our hotmail account: # It's really easy if you're using a built in provider # Built-In providers look after handling the little details such as # 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 # Send an email to a custom provider: # Assuming the {domain} is example.com # Assuming the {userid} is george # 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 # 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 {userid} is george@example.com # 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" # Note that the ampersand (&) that is used in the URL to separate