PageRenderTime 22ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/examples/mail/MailItem.py

http://pyjamas.googlecode.com/
Python | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | 50049bda2e6f966d3eacde249ebf1b09 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
  1. class MailItem:
  2. def __init__(self, sender, email, subject, body):
  3. self.sender = sender
  4. self.email = email
  5. self.subject = subject
  6. self.body = body