Updated Notify_email (markdown)

master
Chris Caron 2025-06-07 16:55:49 -04:00
parent 95346285c2
commit 0ed6754b40
1 changed files with 2 additions and 2 deletions

@ -68,7 +68,7 @@ To send an email notification via a smtp server that does not require authentica
Since URLs can't have spaces in them, you'll need to use '**%20**' as a place-holder for one (if needed). In the example above, the email would actually be received as *Optional Name*.
Got a local passwordless SMTP relay service you're hosting? No problem, the following URL will work:
* `mailto://localhost`
* `mailto://localhost?from=john@example.ca`
### Multiple To Addresses
By default your `mailto://` URL effectively works out to be `mailto://user:pass@domain` and therefore attempts to send your email to `user@domain` unless you've otherwise specified a `to=`. But you can actually send an email to more then one address using the same URL. Here are some examples (written slightly differently but accomplish the same thing) that send an email to more then one address:
@ -133,7 +133,7 @@ apprise -vv -t "Test Message Title" -b "Test Message Body" \
# Send an email to a smtp relay server your hosting on your box:
apprise -vv -t "Test Message Title" -b "Test Message Body" \
mailto://localhost
mailto://localhost?from=john@example.ca
```
Users with custom SMTP Servers will require a slightly more complicated configuration: