tornadomail

Software Screenshot:
tornadomail
Software Details:
Version: 0.1.2
Upload Date: 15 Apr 15
Developer: Anton Agafonov
Distribution Type: Freeware
Downloads: 8

Rating: nan/5 (Total Votes: 0)

tornadomail provides asynchronous email sending library for Tornado. Port of django.mail.

Installation

From source: `git clone git://github.com/equeny/tornadomail.git; cd tornadomail; python setup.py install`

Usage

EmailMessage, EmailMultiAlternatives are almost identical to django classes, except send function is async and can receive callback argument.

    from tornadomail.message import EmailMessage, EmailMultiAlternatives
    from tornadomail.backends.smtp import EmailBackend


    class Application(tornado.web.Application):
        @property
        def mail_connection(self):
            return EmailBackend(
                'smtp.gmail.com', 587, '', '',
                True
            )

    class MainHandler(tornado.web.RequestHandler):

        @property
        def mail_connection(self):
            return self.application.mail_connection

        def get(self):
            self.render("index.html")

        def post(self):

            def _finish(num):
                print 'sended %d message(s)' % num
                self.render("index.html")

            message = EmailMessage(
                self.get_argument('subject'),
                self.get_argument('message'),
                '',
                [self.get_argument('email')],
                connection=self.mail_connection
            )
            message.send()#callback=_finish)
            self.render("index.html")

Requirements:

  • Python
  • Tornado

Similar Software

KBiff
KBiff

11 May 15

sSMTP
sSMTP

2 Jun 15

discogs
discogs

12 May 15

Comments to tornadomail

Comments not found
Add Comment
Turn on images!