I m looking at implementing some email notification in my app. Django-notification or Django-mailer both look appropriate.
I m reading through the docs and trying to figure out how they work together.
from the docs: http://code.google.com/p/django-mailer/#Sample_Use_Cases
django-mailer不应管理实际订阅活动。 考虑“对电离板的新答复”使用案例。 整个网站需要不断跟踪用户对哪些用户表示认可,然后当线更新时,将要求django-mailer向该用户名单发出同样的信息。 但是,django-notification > 用户应当随时了解哪些用户赞同这些用户的阅读和类似的使用案例。
Given this scenario, I don t understand the last line. How do you use django-notification to keep track of what users are subscribed to what threads?
the api for django-notification
https://github.com/jtauber/django-notification/blob/master/docs/usage.txt
makes it look like you can use django-notification to
- define notification types
- do actions like send_now, queue and send
but there is nothing here that indicates how i would subscribe users in the use case described.
Second, in the scenario described, how does django mailer know what to send? does it reuse the definitions from the notification app? it looks like both mailer and notification imlpement "send" functionality....
谁能帮助我更好地理解这一点?