socialnerds/hive
socialnerds
/
hive
Archived
1
0
Fork 0

added email script

This commit is contained in:
David 2012-05-14 14:27:56 +02:00
parent a3d4b684fd
commit 52cb4c4087
1 changed files with 10 additions and 0 deletions

10
email.py Executable file
View File

@ -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()