python Flask向多个收件人发送电子邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Flask向多个收件人发送电子邮件相关的知识,希望对你有一定的参考价值。

from flask import Flask, render_template, make_response
from flask_sqlalchemy import SQLAlchemy
from flask_mail import Mail, Message
import os

app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///subscribe.db'
app.config['MAIL_SERVER'] = 'mail.mail.com'
app.config['MAIL_PORT'] = 25
app.config['MAIL_USERNAME'] = 'name'
app.config['MAIL_PASSWORD'] = 'secret'


db = SQLAlchemy(app)
mail = Mail(app)

class Subscribe(db.Model):
    id = db.Column('id', db.Integer, primary_key=True)
    email = db.Column('email', db.String(50), unique=True, nullable=False)
    company = db.Column(db.String(50), nullable=False)


    def __repr__(self):
        return f"Subscribe('{self.company}', '{self.email}')"

@app.route('/sendmail', methods=['GET', 'POST'])
def index():
    theuser = Subscribe.query.filter(Subscribe.id).all()
    msg = Message('Hello', sender='flask@mail.com', recipients=[theuser.email for theuser in Subscribe.query.all()])

    with app.open_resource(r"C:\py\image.png") as fp:
        msg.attach("image.png", "image/png", fp.read())

    for theuser in Subscribe.query.all():
        mail.send(msg)

    return 'Message sent!'



if __name__ == '__main__':
    app.run(debug=True)

以上是关于python Flask向多个收件人发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

使用 Python smtplib 从 .txt 文件向多个收件人发送电子邮件

使用 MailMessage 向多个收件人发送电子邮件?

PHP表单向多个收件人发送电子邮件

在 Laravel 5.4 中向多个抄送收件人发送电子邮件

使用 Mailkit 或 mimekit 向多个收件人发送一封电子邮件

如何使用存储在 Excel 中的地址向多个收件人发送电子邮件?