socialnerds/hive
socialnerds
/
hive
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
hive/email.py

11 lines
153 B
Python
Raw Normal View History

2012-05-14 14:27:56 +02:00
#!/usr/bin/python2.7
#import smtplib
testobj = smtplib.SMTP("exchange.aec.at")
testobj.sendmail("david@socialnerds.org", "hallo du")
testobj.quit()