Re: Send mail after x hours

2016-08-17 Thread Asad Jibran Ahmed
Personally, I'd setup a simple cronjob on my machine that runs a Django management command. The command would get a list of users who are eligible to receive emails and send it to them. I would have just used the send_mail directly from my management command, but if you already have a RQ setup

Re: Send mail after x hours

2016-08-17 Thread Kishan Mehta
Thanks but I already have django rq adn rq-scheduler configured and running so I was thinking to use it and avoid celery. On Wed, Aug 17, 2016 at 4:37 PM, Dheerendra Rathor < dheeru.ratho...@gmail.com> wrote: > I’ll suggest you to use some background task runner. Celery will work > great for you

RE: Send mail after x hours

2016-08-17 Thread Dheerendra Rathor
I’ll suggest you to use some background task runner. Celery will work great for you as it is developed for Python and work on multiple platform with multiple types of message queues. Sent from Mail for Windows 10 From: Kishan Mehta -- You received this message because you are subscribed to th