Email Benachrichtigungen per sendmail verschicken unter Linux.
Hier ein kleines Programm, welches automatisiert zu einem bestimmten Zeitpunkt eine eMail versendet.
nano sendmail.sh
#!/bin/bash
echo "Turn on the TV and watch - Walulis sieht fern - on EinsPlus (20:15 Uhr)" | mail -s "EinsPlus (20:15 Uhr)-> Walulis sieht fern" user@mattionline.de
chmod +x sendmail.sh
nano /etc/crontab
#sendmail
00 20 * * 2 root cd && ./sendmail.sh