当前位置: 首页>>代码示例>>Python>>正文


Python Gmail._get_receivers方法代码示例

本文整理汇总了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)
开发者ID:LeoIannacone,项目名称:goopg,代码行数:15,代码来源:gmail.tests.py

示例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)
开发者ID:LeoIannacone,项目名称:goopg,代码行数:15,代码来源:gmail.tests.py

示例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)
开发者ID:LeoIannacone,项目名称:goopg,代码行数:25,代码来源:gmail.tests.py


注:本文中的gmail.Gmail._get_receivers方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。