• flask 发送QQ邮箱


    from flask import Flask
    from flask_script import Manager, Shell
    from flask_mail import Mail, Message
    from threading import Thread
    
    
    app = Flask(__name__)
    app.config['MAIL_DEBUG'] = True             # 开启debug,便于调试看信息
    app.config['MAIL_SUPPRESS_SEND'] = False    # 发送邮件,为True则不发送
    app.config['MAIL_SERVER'] = 'smtp.qq.com'   # 邮箱服务器
    app.config['MAIL_PORT'] = 465               # 端口
    app.config['MAIL_USE_SSL'] = True           # 重要,qq邮箱需要使用SSL
    app.config['MAIL_USE_TLS'] = False          # 不需要使用TLS
    app.config['MAIL_USERNAME'] = 'xxx@qq.com'  # 填邮箱
    app.config['MAIL_PASSWORD'] = 'klxputnyhdjfbxxx'      # 填授权码
    app.config['MAIL_DEFAULT_SENDER'] = 'xxx@qq.com'  # 填邮箱,默认发送者
    app.config['FLASKY_MAIL_SUBJECT_PREFIX'] = '[号外]'
    manager = Manager(app)
    mail=Mail()
    mail.init_app(app)
    
    
    # 异步发送邮件
    def send_async_email(app, msg):
        with app.app_context():
            mail.send(msg)
    
    
    @app.route('/')
    def index():
        msg = Message(subject=app.config['FLASKY_MAIL_SUBJECT_PREFIX']+'Hello World',       #邮件标题
                      sender="xxx@qq.com",  # 需要使用默认发送者则不用填
                      recipients=[('zzz','xxx@qq.com'),('小号','xxx@qq.com')])
        # 邮件内容会以文本和html两种格式呈现,而你能看到哪种格式取决于你的邮件客户端。
        msg.body = 'sended by flask-email'
        msg.html = '<b>测试Flask发送邮件<b>'
        thread = Thread(target=send_async_email, args=[app, msg])
        thread.start()
        return '<h1>邮件发送成功</h1>'
    
    
    if __name__ == '__main__':
        manager.run()
    
    

    https://www.cnblogs.com/huchong/p/8990610.html

  • 相关阅读:
    metasploit--multi/samba/usermap_script
    msfcli 不能使用,在新版metasploit不再有效,推荐使用msfconsole
    test.fire渗透测试
    metasploit服务扫描与查点
    Synchronized底层实现
    正在使用的IDEA插件
    JavaWeb
    设计模式
    MySQL
    计算机网络
  • 原文地址:https://www.cnblogs.com/plusUltra/p/10571739.html
Copyright © 2020-2023  润新知