Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.71.254.84
138 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
email /
mime /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.py
0
B
-rw-r--r--
__init__.pyc
128
B
-rw-r--r--
application.py
1.23
KB
-rw-r--r--
application.pyc
1.54
KB
-rw-r--r--
audio.py
2.62
KB
-rw-r--r--
audio.pyc
2.83
KB
-rw-r--r--
base.py
794
B
-rw-r--r--
base.pyc
1.08
KB
-rw-r--r--
image.py
1.72
KB
-rw-r--r--
image.pyc
2
KB
-rw-r--r--
message.py
1.26
KB
-rw-r--r--
message.pyc
1.41
KB
-rw-r--r--
multipart.py
1.54
KB
-rw-r--r--
multipart.pyc
1.62
KB
-rw-r--r--
nonmultipart.py
691
B
-rw-r--r--
nonmultipart.pyc
882
B
-rw-r--r--
text.py
1006
B
-rw-r--r--
text.pyc
1.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : text.py
# 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)
Close