Home > Net >  Sending the data saved in the database in the Django project to an e-mail address
Sending the data saved in the database in the Django project to an e-mail address

Time:10-24

First of all, I'm new to this and I want to do something like this. I want to filter the database records in my project that I created with Django and send them to an e-mail address in a certain format. I have no idea how to do this, can you help me with this?

CodePudding user response:

You can use django celery to schedule daily mails.

This SO post answers it pretty well : Gmail Schedule Send Email in Django

  • Related