Re: How to send e-mail asynchronously

2016-05-28 Thread Luis Zárate
I wrote something for send async notification that works with celery https://github.com/luisza/async_notifications There is a demo project and some ideas about how to implement it. If you like you can use it and if you want to extend do it and let me know for incorporate you're code. El

Re: How to send e-mail asynchronously

2016-05-28 Thread Akhil Lawrence
You can create a celery task fro this. See this link for more details. http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html On Saturday, 28 May 2016 19:51:49 UTC+5:30, 2me wrote: > > I have to implement a thread in order to test if (temperature>maximmum) it > sends an

How to send e-mail asynchronously

2016-05-28 Thread 2me
I have to implement a thread in order to test if (temperature>maximmum) it sends an email . I have done a python file which reads temperature and as a begining I have tested an aplication that sends email when I access to its URL . BUt I have no idea how to this into a thread !!! please help