本文整理汇总了Python中email.mime.base.MIMEBase方法的典型用法代码示例。如果您正苦于以下问题:Python base.MIMEBase方法的具体用法?Python base.MIMEBase怎么用?Python base.MIMEBase使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类email.mime.base
的用法示例。
在下文中一共展示了base.MIMEBase方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_no_parts_in_a_multipart_with_none_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_no_parts_in_a_multipart_with_none_epilogue(self):
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.set_boundary('BOUNDARY')
self.ndiffAssertEqual(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
--BOUNDARY--
''')
示例2: test_no_parts_in_a_multipart_with_empty_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_no_parts_in_a_multipart_with_empty_epilogue(self):
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.preamble = ''
outer.epilogue = ''
outer.set_boundary('BOUNDARY')
self.ndiffAssertEqual(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
--BOUNDARY--
''')
示例3: test_one_part_in_a_multipart
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_one_part_in_a_multipart(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.set_boundary('BOUNDARY')
msg = MIMEText('hello world')
outer.attach(msg)
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--
''')
示例4: test_seq_parts_in_a_multipart_with_none_preamble
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_seq_parts_in_a_multipart_with_none_preamble(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.preamble = None
msg = MIMEText('hello world')
outer.attach(msg)
outer.set_boundary('BOUNDARY')
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--
''')
示例5: test_seq_parts_in_a_multipart_with_none_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_seq_parts_in_a_multipart_with_none_epilogue(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.epilogue = None
msg = MIMEText('hello world')
outer.attach(msg)
outer.set_boundary('BOUNDARY')
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--
''')
示例6: test_seq_parts_in_a_multipart_with_empty_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_seq_parts_in_a_multipart_with_empty_epilogue(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.epilogue = ''
msg = MIMEText('hello world')
outer.attach(msg)
outer.set_boundary('BOUNDARY')
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--
''')
示例7: test__all__
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test__all__(self):
module = __import__('email')
# Can't use sorted() here due to Python 2.3 compatibility
all = module.__all__[:]
all.sort()
self.assertEqual(all, [
# Old names
'Charset', 'Encoders', 'Errors', 'Generator',
'Header', 'Iterators', 'MIMEAudio', 'MIMEBase',
'MIMEImage', 'MIMEMessage', 'MIMEMultipart',
'MIMENonMultipart', 'MIMEText', 'Message',
'Parser', 'Utils', 'base64MIME',
# new names
'base64mime', 'charset', 'encoders', 'errors', 'generator',
'header', 'iterators', 'message', 'message_from_file',
'message_from_string', 'mime', 'parser',
'quopriMIME', 'quoprimime', 'utils',
])
示例8: test_no_parts_in_a_multipart_with_none_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_no_parts_in_a_multipart_with_none_epilogue(self):
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.set_boundary('BOUNDARY')
self.ndiffAssertEqual(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
--BOUNDARY--''')
示例9: test_one_part_in_a_multipart
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_one_part_in_a_multipart(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.set_boundary('BOUNDARY')
msg = MIMEText('hello world')
outer.attach(msg)
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--''')
示例10: test_seq_parts_in_a_multipart_with_none_preamble
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_seq_parts_in_a_multipart_with_none_preamble(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.preamble = None
msg = MIMEText('hello world')
outer.attach(msg)
outer.set_boundary('BOUNDARY')
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--''')
示例11: test_seq_parts_in_a_multipart_with_none_epilogue
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def test_seq_parts_in_a_multipart_with_none_epilogue(self):
eq = self.ndiffAssertEqual
outer = MIMEBase('multipart', 'mixed')
outer['Subject'] = 'A subject'
outer['To'] = 'aperson@dom.ain'
outer['From'] = 'bperson@dom.ain'
outer.epilogue = None
msg = MIMEText('hello world')
outer.attach(msg)
outer.set_boundary('BOUNDARY')
eq(outer.as_string(), '''\
Content-Type: multipart/mixed; boundary="BOUNDARY"
MIME-Version: 1.0
Subject: A subject
To: aperson@dom.ain
From: bperson@dom.ain
--BOUNDARY
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
hello world
--BOUNDARY--''')
示例12: format
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def format(self, parts, events, filename, *args):
prefix, ext = os.path.splitext(filename)
if ext.lower() == ".zip":
zip_name = filename
raw_name = prefix
else:
zip_name = filename + ".zip"
raw_name = filename
data = self.formatter.format(parts, events, *args)
memfile = StringIO()
zipped = zipfile.ZipFile(memfile, 'w', zipfile.ZIP_DEFLATED)
zipped.writestr(raw_name, data.encode("utf-8"))
zipped.close()
memfile.flush()
memfile.seek(0)
part = MIMEBase("application", "zip")
part.set_payload(memfile.read())
encode_base64(part)
part.add_header("Content-Disposition", "attachment", filename=zip_name)
parts.append(part)
return u""
示例13: send_email
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def send_email(auth, email_to, email_from, email_cc, subject, text, html=None, attachment_filename=None, attachment_rows=None):
if project.verbose: print('SENDING EMAIL', email_to)
message = MIMEMultipart('alternative')
message.set_charset('utf8')
message['to'] = email_to
message['cc'] = email_cc
message['from'] = email_from
message['subject'] = subject
message.attach(MIMEText(text, 'plain', 'UTF-8'))
if html:
message.attach(MIMEText(html, 'html', 'UTF-8'))
if attachment_filename and attachment_rows:
attachment = MIMEBase("text", "csv")
attachment.set_payload(rows_to_csv(attachment_rows).read())
attachment.add_header('Content-Disposition', 'attachment',filename=attachment_filename)
encode_base64(attachment)
message.attach(attachment)
#API_Gmail(auth).users().messages().send(userId='me', body={'raw': base64.urlsafe_b64encode(message.as_string())}).execute()
API_Gmail(auth).users().messages().send(userId='me', body={'raw': base64.urlsafe_b64encode(message.as_bytes()).decode()}).execute()
示例14: WOSendMail
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def WOSendMail(send_from, send_to, subject, text, files, server="localhost",
port=587, username='', password='', isTls=True):
msg = MIMEMultipart()
msg['From'] = send_from
msg['To'] = send_to
msg['Date'] = formatdate(localtime=True)
msg['Subject'] = subject
msg.attach(MIMEText(text))
for f in files:
part = MIMEBase('application', "octet-stream")
part.set_payload(open(f, "rb").read())
encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename="{0}"'
.format(os.path.basename(f)))
msg.attach(part)
smtp = smtplib.SMTP(server, port)
if isTls:
smtp.starttls()
smtp.sendmail(send_from, send_to, msg.as_string())
smtp.quit()
示例15: attach_sheets
# 需要导入模块: from email.mime import base [as 别名]
# 或者: from email.mime.base import MIMEBase [as 别名]
def attach_sheets(*fns):
'''Adds multipart spreadsheets.'''
email = MIMEMultipart()
for fn in fns:
with open(fn, 'rb') as f:
data = f.read()
sheet = MIMEBase('application', 'vnd.ms-excel')
sheet.set_payload(data)
sheet.add_header('Content-Disposition', 'attachment; filename="%s"' % fn)
email.attach(sheet)
return email