ncarlier / feedpushr

A simple feed aggregator daemon with sugar on top.
GNU General Public License v3.0
339 stars 26 forks source link

[Output plugin request] : Apprise #60

Closed tillcash closed 2 years ago

tillcash commented 2 years ago

Thanks for the software.

Is it possible to add Apprise as output plugin?

https://github.com/caronc/apprise

ncarlier commented 2 years ago

Hi, thank you for your interest! This is a good idea but I wonder if the HTTP plugin is not enough ? You can configure the HTTP plugin as follows:

{
  "urls": "mailto://user:pass@gmail.com",
  "title": "{{.Title}}",
  "body": "{{.Content}}",
  "format": "html"
}

Or using Apprise tags:

{
  "tag": "example",
  "title": "{{.Title}}",
  "body": "{{.Content}}",
  "format": "html"
}
tillcash commented 2 years ago

It helps. Thanks.