From 484b1efe27c991f46e79d5df6d7be59dd40ff7cc Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Fri, 18 Sep 2020 11:35:11 -0400 Subject: [PATCH] Updated Notify_email (markdown) --- Notify_email.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Notify_email.md b/Notify_email.md index 707f20d..2ab08c0 100644 --- a/Notify_email.md +++ b/Notify_email.md @@ -63,8 +63,8 @@ The Carbon Copy (**cc=**) and Blind Carbon Copy (**bcc=**) however are applied t ### Parameter Breakdown | Variable | Required | Description | ----------- | -------- | ----------- -| userid | Yes | The account login to your SMTP server; if this is an email you must specify this near the end of the URL as an argument. -| password | Yes | The password required to send an email via your SMTP Server. +| userid | Yes | The account login to your SMTP server; if this is an email you must specify this near the end of the URL as an argument. You can over-ride this by specifying `?user=` on the URL string. +| password | Yes | The password required to send an email via your SMTP Server. You can over-ride this by specifying `?pass=` on the URL string. | domain | Yes | If your email address was **test@example.com** then *example.com* is your domain. You must provide this as part of the URL string! | port | No | The port your SMTP server is listening on. By default the port is **25** for **mailto://** and **587** for all **mailtos://** references. | smtp | No | If the SMTP server differs from your specified domain, then you'll want to specify it as an argument in your URL. @@ -96,7 +96,7 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \ mailto://george:pass123@example.com # The above URL could also have been written like: -# mailto://example.com?user=george&password=pass123 +# mailto://example.com?user=george&pass=pass123 # In some cases, the {userid} is an email address. In this case # you can place this information in the URL parameters instead: @@ -104,7 +104,7 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \ # Assuming the {userid} is george@example.com # Assuming the {password} is pass123 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&pass=pass123" # Note that the ampersand (&) that is used in the URL to separate # one argument from another is also interpreted by the CLI as