On Fri, Nov 27, 2009 at 3:27 AM, Micha <[email protected]> wrote:
> Hi all, > > I'm looking for a way to send a kind of a newsletter (email) to all > users of my trac project. > Any suggestions? ;-) > You could query the database for all available email addresses and then use unix mail, or something else to send the newsletter: select value from session_attribute where name='email'; Will give you all entered email addresses. --Scott -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
