All checks were successful
continuous-integration/drone/push Build is passing
it does not produce stdout Signed-off-by: Filip Kobierski <fkobi@fsfe.org>
Reminder Mails
This program sends periodic mails which can be defined by easy mail templates.
The interval for each mail can be defined in cron style. Sending works by
using msmtp.
Install
This repository is meant to be installed using Docker and Drone CI. Docker logs will contain the status of the cron commands.
Configure templates
The templates shall be plain text files. The must contain at least the following
headers: To, From, Subject. The Date and Message-ID headers are added
automatically.
You can put comments in the file using # as the first character of a line.
These will be deleted before sending.
Variables
You can add variables to a template by prepending # var: . Here is a simple
example:
# var: directory="/tmp"
# var: files=$(ls -l "$directory")
To: me <me@example.com>
From: no-reply@example.com
Subject: Regular file listing in ${directory}
Hello. Here are all files in ${directory}:
${files}
Description
Languages
Shell
80%
Dockerfile
20%