Python/Django: sending emails in the background

后端 未结 3 375
盖世英雄少女心
盖世英雄少女心 2021-02-04 05:04

Imagine a situation in which a user performs an action on a website and admins are notified. Imagine there are 20 admins to notify. By using normal methods for sending emails wi

3条回答
  •  清酒与你
    2021-02-04 05:39

    Another option is django-mailer. It queues up mail in a database table and then you use a cron job to send them.

    https://github.com/pinax/django-mailer

提交回复
热议问题