From 52cb4c4087b996a77a607d842c37414c0e319f98 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 14 May 2012 14:27:56 +0200 Subject: [PATCH] added email script --- email.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 email.py diff --git a/email.py b/email.py new file mode 100755 index 0000000..7a8dc35 --- /dev/null +++ b/email.py @@ -0,0 +1,10 @@ +#!/usr/bin/python2.7 + + +#import smtplib + +testobj = smtplib.SMTP("exchange.aec.at") + +testobj.sendmail("david@socialnerds.org", "hallo du") + +testobj.quit()