-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #446 from Der-Henning/dev
Bump Version 1.20.0
- Loading branch information
Showing
9 changed files
with
150 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,6 +97,7 @@ Enabled = false | |
## Subject and Body options are optional. | ||
## Subject and Body options can use variables as described below | ||
## The Body option is interpreted as HTML | ||
## If "RecipientsPerItem" is included, multiple different recipients may be defined for notification. Notifications for items not listed in the JSON are sent to "Recipients". | ||
Enabled = false | ||
Host = smtp.gmail.com | ||
Port = 587 | ||
|
@@ -106,6 +107,7 @@ TLS = true | |
SSL = false | ||
Sender = [email protected] | ||
Recipients = [email protected] | ||
; RecipientsPerItem = {"123" : ["[email protected]", "[email protected]"], "456" : ["[email protected]"], "789": "[email protected]"} | ||
; Cron = | ||
; Subject = | ||
; Body = | ||
|
@@ -146,7 +148,7 @@ Topic = | |
; Cron = | ||
|
||
## To use Telegram notifications you have to create a bot using the @botfather | ||
## If you only provide the token of the bot will use the last chat it reseived a message on | ||
## If you only provide the token of the bot will use the last chat it received a message on | ||
## You can add multiple chat ids as a comma seperated list | ||
## The message body is optional and is interpreted as markdown text | ||
## You can use the same variables as described for the Webhook notifier below | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -123,6 +123,7 @@ You can combine multiple crons as semicolon separated list. | |
| Password | SMTP_PASSWORD | login password | | ||
| Sender | SMTP_SENDER | email sender | | ||
| Recipients | SMTP_RECIPIENTS | email recipients | | YES | | ||
| RecipientsPerItem | SMTP_RECIPIENTS_PER_ITEM | email recipients per item as JSON `{"ItemId_1": ["[email protected]", ...], ...}` | | | | ||
| Subject | SMTP_SUBJECT | email subject | `New Magic Bags` | | YES | | ||
| Body | SMTP_BODY | email html body | `<b>${{display_name}}</b> </br> New Amount: ${{items_available}}` | | YES | | ||
| Cron | SMTP_CRON | enable notification only on schedule | `* * * * *` | | ||
|