OXIESEC PANEL
- Current Dir:
/
/
lib64
/
python2.7
/
email
/
mime
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/16/2024 08:50:43 PM
rwxr-xr-x
📄
__init__.py
0 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
__init__.pyc
130 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
__init__.pyo
130 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
application.py
1.23 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
application.pyc
1.55 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
application.pyo
1.55 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
audio.py
2.62 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
audio.pyc
2.84 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
audio.pyo
2.84 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
base.py
794 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
base.pyc
1.09 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
base.pyo
1.09 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
image.py
1.72 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
image.pyc
2 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
image.pyo
2 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
message.py
1.26 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
message.pyc
1.41 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
message.pyo
1.41 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
multipart.py
1.54 KB
11/15/2023 03:01:12 PM
rw-r--r--
📄
multipart.pyc
1.63 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
multipart.pyo
1.63 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
nonmultipart.py
691 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
nonmultipart.pyc
888 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
nonmultipart.pyo
888 bytes
11/15/2023 03:01:23 PM
rw-r--r--
📄
text.py
1006 bytes
11/15/2023 03:01:12 PM
rw-r--r--
📄
text.pyc
1.28 KB
11/15/2023 03:01:23 PM
rw-r--r--
📄
text.pyo
1.28 KB
11/15/2023 03:01:23 PM
rw-r--r--
Editing: text.py
Close
# Copyright (C) 2001-2006 Python Software Foundation # Author: Barry Warsaw # Contact: email-sig@python.org """Class representing text/* type MIME documents.""" __all__ = ['MIMEText'] from email.encoders import encode_7or8bit from email.mime.nonmultipart import MIMENonMultipart class MIMEText(MIMENonMultipart): """Class for generating text/* type MIME documents.""" def __init__(self, _text, _subtype='plain', _charset='us-ascii'): """Create a text/* type MIME document. _text is the string for this message object. _subtype is the MIME sub content type, defaulting to "plain". _charset is the character set parameter added to the Content-Type header. This defaults to "us-ascii". Note that as a side-effect, the Content-Transfer-Encoding header will also be set. """ MIMENonMultipart.__init__(self, 'text', _subtype, **{'charset': _charset}) self.set_payload(_text, _charset)