From f761b7484921849b049680347d0245cfd78894ae Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Fri, 10 Aug 2018 14:36:50 +0200 Subject: [PATCH] fixed path to sendmail --- pysema.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pysema.py b/pysema.py index 22b4acf..4610b13 100644 --- a/pysema.py +++ b/pysema.py @@ -12,7 +12,8 @@ import subprocess from email.message import EmailMessage -SENDMAIL_PATH = '/usr/bin/sendmail' +# path to the sendmail programm +SENDMAIL_PATH = '/usr/sbin/sendmail' class SendMailException(Exception):