Esempio n. 1
0
    def __init__(self, _subtype='mixed', boundary=None, _subparts=None, *,
        policy=None, **_params):
        """Creates a multipart/* type message.

        By default, creates a multipart/mixed message, with proper
        Content-Type and MIME-Version headers.

        _subtype is the subtype of the multipart content type, defaulting to
        `mixed'.

        boundary is the multipart boundary string.  By default it is
        calculated as needed.

        _subparts is a sequence of initial subparts for the payload.  It
        must be an iterable object, such as a list.  You can always
        attach new subparts to the message by using the attach() method.

        Additional parameters for the Content-Type header are taken from the
        keyword arguments (or passed into the _params argument).
        """
        MIMEBase.__init__(self, 'multipart', _subtype, policy=policy, **_params
            )
        self._payload = []
        if _subparts:
            for p in _subparts:
                self.attach(p)
        if boundary:
            self.set_boundary(boundary)
Esempio n. 2
0
    def __init__(self, _subtype='mixed', boundary=None, _subparts=None,
                 **_params):
        """Creates a multipart/* type message.

        By default, creates a multipart/mixed message, with proper
        Content-Type and MIME-Version headers.

        _subtype is the subtype of the multipart content type, defaulting to
        `mixed'.

        boundary is the multipart boundary string.  By default it is
        calculated as needed.

        _subparts is a sequence of initial subparts for the payload.  It
        must be an iterable object, such as a list.  You can always
        attach new subparts to the message by using the attach() method.

        Additional parameters for the Content-Type header are taken from the
        keyword arguments (or passed into the _params argument).
        """
        MIMEBase.__init__(self, 'multipart', _subtype, **_params)
        if _subparts:
            for p in _subparts:
                self.attach(p)
        if boundary:
            self.set_boundary(boundary)
Esempio n. 3
0
 def __init__(self, orig_msg):
     """
     Initialize the DSN.
     """
     MIMEBase.__init__(self, "message", "delivery-status")
     self.__delitem__("MIME-Version")
     self._build_dsn(orig_msg)
Esempio n. 4
0
 def __init__(self, orig_msg):
     """
     Initialize the DSN.
     """
     MIMEBase.__init__(self, "message", "delivery-status")
     self.__delitem__("MIME-Version")
     self._build_dsn(orig_msg)
Esempio n. 5
0
 def __init__(self, _subtype='mixed', boundary=None, _subparts=None, **_params):
     MIMEBase.__init__(self, 'multipart', _subtype, **_params)
     self._payload = []
     if _subparts:
         for p in _subparts:
             self.attach(p)
     if boundary:
         self.set_boundary(boundary)
 def __init__(self,
              _subtype='mixed',
              boundary=None,
              _subparts=None,
              **_params):
     MIMEBase.__init__(self, 'multipart', _subtype, **_params)
     self._payload = []
     if _subparts:
         for p in _subparts:
             self.attach(p)
     if boundary:
         self.set_boundary(boundary)
Esempio n. 7
0
 def __init__(self, type, **params):
     self.maintype, self.subtype = type.split('/')
     MIMEBase.__init__(self, self.maintype, self.subtype, **params)
Esempio n. 8
0
 def __init__(self, type_, **params):
     self.maintype, self.subtype = type_.split('/')
     # classes from email.* are all old-style :(
     MIMEBase.__init__(self, self.maintype, self.subtype, **params)
Esempio n. 9
0
 def __init__(self, type_, **params):
     self.maintype, self.subtype = type_.split('/')
     # classes from email.* are all old-style :(
     MIMEBase.__init__(self, self.maintype, self.subtype, **params)
Esempio n. 10
0
 def __init__(self, type_, **params):
     self.maintype, self.subtype = type_.split("/")
     MIMEBase.__init__(self, self.maintype, self.subtype, **params)