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


Python Mail.unsubscribe方法代码示例

本文整理汇总了Python中mail.Mail.unsubscribe方法的典型用法代码示例。如果您正苦于以下问题:Python Mail.unsubscribe方法的具体用法?Python Mail.unsubscribe怎么用?Python Mail.unsubscribe使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mail.Mail的用法示例。


在下文中一共展示了Mail.unsubscribe方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: unsubscribe

# 需要导入模块: from mail import Mail [as 别名]
# 或者: from mail.Mail import unsubscribe [as 别名]
    def unsubscribe(self):
        mail_configs = {}
        '''
        set appid and appkey
        '''
        mail_configs['appid'] = self.appid
        mail_configs['appkey'] = self.appkey

        '''
        set sign_type,if is set
        '''
        if self.sign_type != '':
            mail_configs['sign_type'] = self.sign_type

        '''
        init mail class
        '''
        addressbook = Mail(mail_configs)

        '''
        build request and send email and return the result
        '''
        return addressbook.unsubscribe(self.build_request())
开发者ID:dzhuang,项目名称:SUBMAIL_PYTHON_SDK,代码行数:25,代码来源:address_book_mail.py


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