Actually, I find that is possible (look here: <a href="http://trac.edgewall.org/wiki/TracNotification">http://trac.edgewall.org/wiki/TracNotification</a>), but I like to know if it's possible to have an html mail with the body of the ticket.
<br><br>Thanks. Diego.<br><br><div><span class="gmail_quote">2007/5/23, Joel Bernstein <<a href="mailto:joel@fysh.org">joel@fysh.org</a>>:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Wed, May 23, 2007 at 03:44:05PM +0100, diego gentoo wrote:<br>> Hi there. I have a Trac enviroment and I need that, when a ticket is<br>> created, the system should send an email to all the developers with the body
<br>> of the ticket itself. It is possible?<br><br>Not as far as I know. But trac can serve you an RSS feed of the data and<br>you could roll your own. Or perhaps the RSS notification would be<br>sufficient? You can also roll your own tool that accesses the trac db,
<br>or perhaps modify an existing one.<br><br>The SQL query trac uses to display active tickets is:<br>SELECT p.value AS __color__,<br>   id AS ticket, summary, component, version, milestone, t.type AS type,<br>   (CASE status WHEN 'assigned' THEN owner||' *' ELSE owner END) AS
<br>owner,<br>   time AS created,<br>   changetime AS _changetime, description AS _description,<br>   reporter AS _reporter<br>  FROM ticket t, enum p<br>  WHERE status IN ('new', 'assigned', 'reopened')
<br>AND <a href="http://p.name">p.name</a> = t.priority AND p.type = 'priority'<br>  ORDER BY p.value, milestone, t.type, time<br><br><br>HTH,<br><br>/joel<br>--<br>Gllug mailing list  -  <a href="mailto:Gllug@gllug.org.uk">
Gllug@gllug.org.uk</a><br><a href="http://lists.gllug.org.uk/mailman/listinfo/gllug">http://lists.gllug.org.uk/mailman/listinfo/gllug</a><br></blockquote></div><br>