X-Git-Url: https://git.ralfj.de/saartuer.git/blobdiff_plain/0a8315d2d0460a77b8e9c0ff3b4ce138e4f4a593..3313462175e847d3c0c5075e1ecc589f1d264ca7:/libtuer.py diff --git a/libtuer.py b/libtuer.py index 613ce4e..8f9c48f 100644 --- a/libtuer.py +++ b/libtuer.py @@ -17,6 +17,7 @@ def sendeMail(subject, text, receivers, sender='sphinx@hacksaar.de', replyTo=Non msg['To'] = ', '.join(receivers) if replyTo is not None: msg['Reply-To'] = replyTo + # FIXME set time # put into envelope and send s = smtplib.SMTP('ralfj.de') s.sendmail(sender, receivers, msg.as_string())