Hi,
> Could anyone give us some pointers for the available
> fields in the email reminders template,
> email_alert.tpl.text?
>
> We've like to inlcude a full report on the issue if
> possible but can't figure out which data is availabke
> to extract.
>
Sure, look at class Reminder_Action on method perform(). The following
snipplet is used to pass the '$data' placeholder into the Smarty template:
$tpl->bulkAssign(array(
"data" => Notification::getIssueDetails($issue_id),
"reminder" => $reminder,
"conditions" => $conditions
));
So the available information is passed from Notification::getIssueDetails(),
and you can use any of the existing fields in the template, like
{$data.description} or whatever.
Please let me know if you have any questions.
--Joao