• Flask项目中邮箱模块的应用


    Flask项目中邮箱模块的应用

    from flask import Flask, render_template, make_response
    from flask_mail import Mail, Message
    import os
    import datetime
    from flask_script import Manager
    
    app = Flask(__name__)
    
    app.config['MAIL_SERVER'] = 'smtp.qq.com'
    app.config['MAIL_PORT'] = 465
    app.config['MAIL_USE_TLS'] = False
    app.config['MAIL_USE_SSL'] = True
    app.config['MAIL_USERNAME'] = '1449694560@qq.com'
    app.config['MAIL_PASSWORD'] = 'bjqvxyuexkgnhccc'
    
    #app.config['MAIL_USERNAME'] = os.environ.get('MAIL_USERNAME')
    #app.config['MAIL_PASSWORD'] = os.environ.get('MAIL_PASSWORD')
    
    app.config['FLASK_MAIL_SUBJECT_PREFIX'] = '[Flasky]'
    app.config['MAIL_DEFAULT_SENDER'] = '1449694560@qq.com'
    
    mail = Mail(app)  # 创建发送邮件对象 用于发送邮件
    manager = Manager(app)
    
    
    def send_email(to, subject, **kwargs):
        msg = Message(app.config['FLASK_MAIL_SUBJECT_PREFIX'] + subject, sender=app.config['MAIL_USERNAME'], recipients=[to], date=datetime.datetime.now().timestamp())
        # msg.body = render_template(template + '.txt', **kwargs)
        # msg.html = render_template(template + '.html', **kwargs)
        print(app.config['MAIL_PASSWORD'])
        print(app.config['MAIL_USERNAME'])
        msg.body = 'text body'
        msg.html = '<b>HTML</b> body'
        with app.app_context():
            mail.send(msg)
    
    
    @app.route('/blog_mail')
    def index():
        recipter = 'majiye9396@163.com'
        subject = '自查信息包括问题单/事件单/变更单等'
        send_email(recipter, subject)
        return make_response('secceess')
    
    
    if __name__ == '__main__':
        manager.run()
    
  • 相关阅读:
    C#学习(四)
    C#学习(三)
    sqlserver基本操作
    ado.net(1)
    wpf的学习日志(一)
    C#学习(二)
    三大范式
    存储过程
    事务
    范文模板
  • 原文地址:https://www.cnblogs.com/We612/p/11588587.html
Copyright © 2020-2023  润新知