mirror of
https://github.com/caronc/apprise.git
synced 2024-12-12 18:01:08 +01:00
Updated Notify_email (markdown)
parent
3acee93b7d
commit
484b1efe27
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user