@@ 2,6 2,8 @@
Send notifications to various sources when [Miniflux](https://miniflux.app) finds new RSS entries.
+Currently supported sources include Email, Gotify, and Webhooks.
+
## Example Usage
1. Create a TOML configuration file with the following format:
@@ 28,6 30,20 @@ username = "myuser" # email server username
password = "mypass" # email server password
server = "smtp.example.com:587" # email server url with port
+[gotify]
+title_template = """
+New Entry: {{ .Title }}{{ if ne .Author "" }} • {{ .Author }}{{ end }}
+""" # golang html/template-compatible template string, which will be sent as the title of the message
+message_template = """
+{{ if ne .Content "" }}
+{{ .Content }}
+{{ end }}
+URL: {{ .URL }}
+""" # golang html/template-compatible template string, which will be sent as the body of the message
+server = "https://gotify.example.com" # gotify server url
+token = "mytoken" # app authentication token generated by gotify
+priority = 10 # optional message priority
+
[webhook]
template = """
<h3>{{ .Title }}{{ if ne .Author "" }} • <i>{{ .Author }}</i>{{ end }}</h3>