用法:
email.utils.getaddresses(fieldvalues)
此方法返回由
parseaddr()
返回的表单的 2 元组列表。fieldvalues
是可能由Message.get_all
返回的头字段值序列。这是一个获取消息的所有收件人的简单示例:from email.utils import getaddresses tos = msg.get_all('to', []) ccs = msg.get_all('cc', []) resent_tos = msg.get_all('resent-to', []) resent_ccs = msg.get_all('resent-cc', []) all_recipients = getaddresses(tos + ccs + resent_tos + resent_ccs)
相关用法
- Python email.message.Message.walk用法及代码示例
- Python email.headerregistry.DateHeader用法及代码示例
- Python email.message.EmailMessage.add_header用法及代码示例
- Python email.header.decode_header用法及代码示例
- Python email.message.EmailMessage.walk用法及代码示例
- Python email.message.Message.add_header用法及代码示例
- Python email.message.Message.as_bytes用法及代码示例
- Python email.message.Message.as_string用法及代码示例
- Python email.iterators._structure用法及代码示例
- Python email.headerregistry.BaseHeader用法及代码示例
- Python emoji转text用法及代码示例
- Python numpy matrix empty()用法及代码示例
- Python numpy matrix eye()用法及代码示例
- Python enchant.request_dict()用法及代码示例
- Python eval()用法及代码示例
- Python enum.IntEnum用法及代码示例
- Python math expm1()用法及代码示例
- Python enchant.get_enchant_version()用法及代码示例
- Python enchant.request_pwl_dict()用法及代码示例
- Python eval用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 email.utils.getaddresses。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。