stoneridge/sremailer.py

31 строка
675 B
Python
Исходник Обычный вид История

2013-03-06 03:30:00 +04:00
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public License,
# v. 2.0. If a copy of the MPL was not distributed with this file, You can
# obtain one at http://mozilla.org/MPL/2.0/.
import bottle
import stoneridge
@bottle.post('/email')
def email():
2013-03-06 03:33:23 +04:00
r = bottle.request.forms
to = r.get('to')
subject = r.get('subject')
msg = r.get('message')
2013-03-06 03:30:00 +04:00
stoneridge.sendmail(to, subject, msg)
def daemon():
stoneridge.StreamLogger.bottle_inject()
bottle.run('0.0.0.0', port=2255)
@stoneridge.main
def main():
parser = stoneridge.DaemonArgumentParser()
parser.parse_args()
parser.start_daemon(daemon)