main
1#!/usr/bin/env bash
2# Send email trough systemd
3
4msmtp -C /etc/msmtprc $1 <<ERRMAIL
5To: $1
6From: systemd <maton+$HOSTNAME@sbr.me>
7Subject: $2
8Content-Transfer-Encoding: 8bit
9Content-Type: text/plain; charset=UTF-8
10
11$(systemctl status --full "$2")
12ERRMAIL