In my django application I am using django-notification
to send notifications. However I noticed that in some cases (when sending multiple notifications) my web application is giving delayed responses. Although I am sending notifications through Ajax requests, I still think it would be best if I could implement mailtools
library which provide threaded emails.
Has anyone implemented such a thing? Is it easy? How can I use ThreadedMailer
from mailtools
in django-notification
?
or, is there another alternative?