Hi Sreelatha,

When you say "send a messae to multiple users", do you mean display a
message on your site to a set of users?

There's a couple of different ways to attack this kind of problem -
but the easiest is to have a view that queries a storage place (likely
a model) and displays any messages from there if the user matches the
criteria that you're interested in.

There is a built in messaging mechanism that works for authenticated
users, but it is "per user" - in that a view can push a message into
the session for the user, and then a future template or view can pull
those out and display them. There's also work (I think...) ongoing to
do that for anyone that has a session, although I don't know its
status off the top of my head. Neither of these options are
particularly "broadcast" kinds of mechanisms though.

-joe

On 7/9/07, sreelatha <[EMAIL PROTECTED]> wrote:
>
> Hi,
> I am Sreelatha I have struck up at one place please help me out.
> The problem is I want to send a single message to multiple users but I
> dont want to save the message to all the users which is a hectic work.
> I s there any way to solve this problem.
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to