Skip to content
This repository has been archived by the owner on Dec 25, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (24 loc) · 491 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 491 Bytes

feed-go-mail

parses rss feeds and sends them to a dedicated email address

Build

  • install deps:
go mod download
  • build:
make build

see output in /build

Config

put a feedgomail.json file in the directory from which you are executing feedgomail, looking like this:

{
	"From":     "<from-mail>",
	"To":       "<to-mail>",
	"Host":     "<smtp-host>",
	"Port":     1234,
	"Password": "<smtp-password",
	"Feeds":    ["<feed-a>", "<feed-b>", "<feed-c>"]
}