本文整理汇总了Python中gmail.Gmail._get_receivers方法的典型用法代码示例。如果您正苦于以下问题:Python Gmail._get_receivers方法的具体用法?Python Gmail._get_receivers怎么用?Python Gmail._get_receivers使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gmail.Gmail
的用法示例。
在下文中一共展示了Gmail._get_receivers方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_allow_comma_in_receiver_issue_14
# 需要导入模块: from gmail import Gmail [as 别名]
# 或者: from gmail.Gmail import _get_receivers [as 别名]
def test_allow_comma_in_receiver_issue_14(self):
"""
Test if email is sent to the correct contact, containing comma in name
"""
my_sender = 'Me <[email protected]>'
to = '"Leo2, Ianna" <[email protected]>, "Leo, Iannacone" <[email protected]>'
payload = 'This is the payload of test_remove_bcc_from_header'
m = MIMEText(payload)
m['To'] = to
m['From'] = my_sender
addr = Gmail._get_receivers(m)
self.assertIn("[email protected]", addr)
self.assertIn("[email protected]", addr)
示例2: test_do_not_duplicate_senders
# 需要导入模块: from gmail import Gmail [as 别名]
# 或者: from gmail.Gmail import _get_receivers [as 别名]
def test_do_not_duplicate_senders(self):
"""
Test if email is sent twice to the same receiver
"""
my_sender = 'Me <[email protected]>'
to = '"Leo2, Ianna" <[email protected]>, "Leo, Iannacone" <[email protected]>'
payload = 'This is the payload of test_remove_bcc_from_header'
m = MIMEText(payload)
m['To'] = to
m['From'] = my_sender
addr = Gmail._get_receivers(m)
self.assertEqual(1, len(addr))
self.assertIn("[email protected]", addr)
示例3: test_sends_to_everyone
# 需要导入模块: from gmail import Gmail [as 别名]
# 或者: from gmail.Gmail import _get_receivers [as 别名]
def test_sends_to_everyone(self):
"""
Tests if message is going to be sent to:
To:
CC:
Bcc:
"""
my_sender = 'Me <[email protected]>'
to = 'Leo Iannacone <[email protected]>'
Cc = 'Leo2 Iannacone <[email protected]>, Leo3 Iannacone <[email protected]>'
Bcc = 'Leo4 Iannacone <[email protected]>, Leo5 Iannacone <[email protected]>'
m = Message()
m['To'] = to
m['Cc'] = Cc
m['Bcc'] = Bcc
m['From'] = my_sender
my_receivers = ', '.join([to, Cc, Bcc]).split(',')
my_addresses = email.utils.getaddresses(my_receivers)
addresses = Gmail._get_receivers(m)
for name, addr in my_addresses:
self.assertIn(addr, addresses)