text.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Copyright (C) 2001-2006 Python Software Foundation
  2. # Author: Barry Warsaw
  3. # Contact: email-sig@python.org
  4. """Class representing text/* type MIME documents."""
  5. __all__ = ['MIMEText']
  6. from email.charset import Charset
  7. from email.mime.nonmultipart import MIMENonMultipart
  8. class MIMEText(MIMENonMultipart):
  9. """Class for generating text/* type MIME documents."""
  10. def __init__(self, _text, _subtype='plain', _charset=None):
  11. """Create a text/* type MIME document.
  12. _text is the string for this message object.
  13. _subtype is the MIME sub content type, defaulting to "plain".
  14. _charset is the character set parameter added to the Content-Type
  15. header. This defaults to "us-ascii". Note that as a side-effect, the
  16. Content-Transfer-Encoding header will also be set.
  17. """
  18. # If no _charset was specified, check to see if there are non-ascii
  19. # characters present. If not, use 'us-ascii', otherwise use utf-8.
  20. # XXX: This can be removed once #7304 is fixed.
  21. if _charset is None:
  22. try:
  23. _text.encode('us-ascii')
  24. _charset = 'us-ascii'
  25. except UnicodeEncodeError:
  26. _charset = 'utf-8'
  27. if isinstance(_charset, Charset):
  28. _charset = str(_charset)
  29. MIMENonMultipart.__init__(self, 'text', _subtype,
  30. **{'charset': _charset})
  31. self.set_payload(_text, _charset)