如何使用django模块自动发送邮件通知?

how to send mail notification automatically using django modules?

我正在开发一个控制 phone 消费的应用程序,我想制作一个通知系统,当他们达到消费时自动通知雇主 rate.the 雇主不包括在 auth_user,以及我发现的所有通知模块都可以与 auth_user table 一起使用。那么谁能提出一个能满足我需求的模块谢谢

您无需注册用户即可发送电子邮件通知(据我了解,您希望完成此操作)。

查看 Django 电子邮件文档: https://docs.djangoproject.com/en/1.8/topics/email/

您可以像网站中的任何其他页面一样使用 HTML 模板(或纯文本版本),而不是将内容定义为纯文本。

例如,使用模板发送纯文本电子邮件:

from django.template.loader import render_to_string
from django.core.mail import send_mail
email_message = render_to_string(template_path, template_context)
send_mail(subject, email_message, sender_email, [recipient_email])