multipart.py 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. # Copyright (C) 2002-2006 Python Software Foundation
  2. # Author: Barry Warsaw
  3. # Contact: email-sig@python.org
  4. """Base class for MIME multipart/* type messages."""
  5. __all__ = ['MIMEMultipart']
  6. from email.mime.base import MIMEBase
  7. class MIMEMultipart(MIMEBase):
  8. """Base class for MIME multipart/* type messages."""
  9. def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
  10. **_params):
  11. """Creates a multipart/* type message.
  12. By default, creates a multipart/mixed message, with proper
  13. Content-Type and MIME-Version headers.
  14. _subtype is the subtype of the multipart content type, defaulting to
  15. `mixed'.
  16. boundary is the multipart boundary string. By default it is
  17. calculated as needed.
  18. _subparts is a sequence of initial subparts for the payload. It
  19. must be an iterable object, such as a list. You can always
  20. attach new subparts to the message by using the attach() method.
  21. Additional parameters for the Content-Type header are taken from the
  22. keyword arguments (or passed into the _params argument).
  23. """
  24. MIMEBase.__init__(self, 'multipart', _subtype, **_params)
  25. # Initialise _payload to an empty list as the Message superclass's
  26. # implementation of is_multipart assumes that _payload is a list for
  27. # multipart messages.
  28. self._payload = []
  29. if _subparts:
  30. for p in _subparts:
  31. self.attach(p)
  32. if boundary:
  33. self.set_boundary(boundary)