imip-agent

tools/sendmail.py

1267:7819b77d9330
2017-09-15 Paul Boddie Introduced a tentative means of classifying periods for suitable operations upon updating an event.
     1 #!/usr/bin/env python     2      3 import smtplib     4 import sys     5      6 sender, recipients = sys.argv[1], sys.argv[2:]     7      8 s = smtplib.SMTP("localhost")     9 print s.sendmail(sender, recipients, sys.stdin.read())